Documentation updates
This commit is contained in:
parent
9cf2b18d5d
commit
0f2d742872
|
@ -35,14 +35,15 @@ public enum SearchStyleEnum {
|
||||||
GET,
|
GET,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is the most common (and generally the default) behaviour. Performs the search using the style:
|
* Performs the search using the style below. Note that this style is less commonly supported
|
||||||
|
* in servers so it should not be used unless there is a specific reason for needing to.
|
||||||
* <br>
|
* <br>
|
||||||
* <code>GET [base]/[resource type]/_search?[params]</code>
|
* <code>GET [base]/[resource type]/_search?[params]</code>
|
||||||
*/
|
*/
|
||||||
GET_WITH_SEARCH,
|
GET_WITH_SEARCH,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is the most common (and generally the default) behaviour. Performs the search using the style:
|
* Performs the search using the style below. This style is useful when you have long search strings.
|
||||||
* <br>
|
* <br>
|
||||||
* <code>POST [base]/[resource type]/_search</code>
|
* <code>POST [base]/[resource type]/_search</code>
|
||||||
* <br>
|
* <br>
|
||||||
|
|
|
@ -197,7 +197,6 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.2</version>
|
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.6</source>
|
<source>1.6</source>
|
||||||
<target>1.6</target>
|
<target>1.6</target>
|
||||||
|
|
Loading…
Reference in New Issue