From 6fe1416173178a70bab87098579a20a38e133a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Vl=C4=8Dek?= Date: Wed, 11 May 2011 23:08:26 +0200 Subject: [PATCH] Fixing Javadoc --- .../java/org/elasticsearch/client/Requests.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/elasticsearch/src/main/java/org/elasticsearch/client/Requests.java b/modules/elasticsearch/src/main/java/org/elasticsearch/client/Requests.java index 159e7540a87..8513b7a7748 100644 --- a/modules/elasticsearch/src/main/java/org/elasticsearch/client/Requests.java +++ b/modules/elasticsearch/src/main/java/org/elasticsearch/client/Requests.java @@ -133,7 +133,7 @@ public class Requests { * Creates a count request which counts the hits matched against a query. Note, the query itself must be set * either using the JSON source of the query, or using a {@link org.elasticsearch.index.query.QueryBuilder} (using {@link org.elasticsearch.index.query.xcontent.QueryBuilders}). * - * @param indices The indices the delete by query against. Use null or _all to execute against all indices + * @param indices The indices to count matched documents against a query. Use null or _all to execute against all indices * @return The count request * @see org.elasticsearch.client.Client#count(org.elasticsearch.action.count.CountRequest) */ @@ -157,7 +157,7 @@ public class Requests { * Creates a search request against one or more indices. Note, the search source must be set either using the * actual JSON search source, or the {@link org.elasticsearch.search.builder.SearchSourceBuilder}. * - * @param indices The indices the delete by query against. Use null or _all to execute against all indices + * @param indices The indices to search against. Use null or _all to execute against all indices * @return The search request * @see org.elasticsearch.client.Client#search(org.elasticsearch.action.search.SearchRequest) */ @@ -179,7 +179,7 @@ public class Requests { /** * Creates an indices status request. * - * @param indices The indices the delete by query against. Use null or _all to execute against all indices + * @param indices The indices to query status about. Use null or _all to execute against all indices * @return The indices status request * @see org.elasticsearch.client.IndicesAdminClient#status(org.elasticsearch.action.admin.indices.status.IndicesStatusRequest) */ @@ -234,7 +234,7 @@ public class Requests { /** * Create a create mapping request against one or more indices. * - * @param indices The indices the delete by query against. Use null or _all to execute against all indices + * @param indices The indices to create mapping. Use null or _all to execute against all indices * @return The create mapping request * @see org.elasticsearch.client.IndicesAdminClient#putMapping(org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest) */ @@ -265,7 +265,7 @@ public class Requests { /** * Creates a refresh indices request. * - * @param indices The indices the delete by query against. Use null or _all to execute against all indices + * @param indices The indices to refresh. Use null or _all to execute against all indices * @return The refresh request * @see org.elasticsearch.client.IndicesAdminClient#refresh(org.elasticsearch.action.admin.indices.refresh.RefreshRequest) */ @@ -276,7 +276,7 @@ public class Requests { /** * Creates a flush indices request. * - * @param indices The indices the delete by query against. Use null or _all to execute against all indices + * @param indices The indices to flush. Use null or _all to execute against all indices * @return The flush request * @see org.elasticsearch.client.IndicesAdminClient#flush(org.elasticsearch.action.admin.indices.flush.FlushRequest) */ @@ -309,7 +309,7 @@ public class Requests { /** * Creates a clean indices cache request. * - * @param indices The indices the gateway snapshot will be performed on. Use null or _all to execute against all indices + * @param indices The indices to clean their caches. Use null or _all to execute against all indices * @return The request */ public static ClearIndicesCacheRequest clearIndicesCacheRequest(String... indices) {