浏览代码

Revert "Bulk Request : Add Document Request"

This reverts commit 86f575dcea31e2e1486a17ed248708084905aeea.
Brian Murphy 11 年之前
父节点
当前提交
c7c61bfd91
共有 1 个文件被更改,包括 0 次插入66 次删除
  1. 0 66
      src/main/java/org/elasticsearch/action/DocumentRequest.java

+ 0 - 66
src/main/java/org/elasticsearch/action/DocumentRequest.java

@@ -1,66 +0,0 @@
-/*
- * Licensed to Elasticsearch under one or more contributor
- * license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright
- * ownership. Elasticsearch licenses this file to you under
- * the Apache License, Version 2.0 (the "License"); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.elasticsearch.action;
-
-import org.elasticsearch.action.support.IndicesOptions;
-
-/**
- * Generic interface to group ActionRequest, which work on single document level
- *
- * Forces this class return index/type/id getters
- */
-public interface DocumentRequest<T> {
-
-    /**
-     * Get the index that this request operates on
-     * @return the index
-     */
-    String index();
-
-    /**
-     * Get the type that this request operates on
-     * @return the type
-     */
-    String type();
-
-    /**
-     * Get the id of the document for this request
-     * @return the id
-     */
-    String id();
-
-    /**
-     * Get the options for this request
-     * @return the indices options
-     */
-    IndicesOptions indicesOptions();
-
-    /**
-     * Set the routing for this request
-     * @param routing
-     * @return the Request
-     */
-    T routing(String routing);
-
-    /**
-     * Get the routing for this request
-     * @return the Routing
-     */
-    String routing();
-}