summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/search/fetch/subphase/package-info.java
diff options
context:
space:
mode:
authorNik Everett <nik9000@gmail.com>2016-07-29 23:05:38 -0400
committerNik Everett <nik9000@gmail.com>2016-08-12 18:21:15 -0400
commitcf6e1a43623a26e012af4d73f6402a8c4ba8034c (patch)
tree213e9af2b6106f1e2e35888cd3db29c9309df978 /core/src/main/java/org/elasticsearch/search/fetch/subphase/package-info.java
parent40d7ebc515978fa80d7a2bde3e72df0648f3b89a (diff)
Move all FetchSubPhases to `o.e.search.fetch.subphase`
As the most complicated `FetchSubPhase` highlighting gets its own package (`o.e.seach.fetch.subphase.highlight`. No other `FetchSubPhase`s get their own package. Instead they all reside together in `o.e.search.fetch.subphase`. Add package descriptions to `o.e.search.fetch` and subpackages.
Diffstat (limited to 'core/src/main/java/org/elasticsearch/search/fetch/subphase/package-info.java')
-rw-r--r--core/src/main/java/org/elasticsearch/search/fetch/subphase/package-info.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/core/src/main/java/org/elasticsearch/search/fetch/subphase/package-info.java b/core/src/main/java/org/elasticsearch/search/fetch/subphase/package-info.java
new file mode 100644
index 0000000000..167ed4aa13
--- /dev/null
+++ b/core/src/main/java/org/elasticsearch/search/fetch/subphase/package-info.java
@@ -0,0 +1,23 @@
+/*
+ * 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.
+ */
+
+/**
+ * Built in {@link org.elasticsearch.search.fetch.FetchSubPhase}s like matched queries and fetching {@code _source}.
+ */
+package org.elasticsearch.search.fetch.subphase;