Java Code Examples for org.elasticsearch.Version#ES_V_6_1_4

The following examples show how to use org.elasticsearch.Version#ES_V_6_1_4 . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ViewsMetaData.java    From crate with Apache License 2.0 4 votes vote down vote up
@Override
public Version getMinimalSupportedVersion() {
    return Version.ES_V_6_1_4;
}
 
Example 2
Source File: UserDefinedFunctionsMetaData.java    From crate with Apache License 2.0 4 votes vote down vote up
@Override
public Version getMinimalSupportedVersion() {
    return Version.ES_V_6_1_4;
}
 
Example 3
Source File: UsersMetaData.java    From crate with Apache License 2.0 4 votes vote down vote up
@Override
public Version getMinimalSupportedVersion() {
    return Version.ES_V_6_1_4;
}
 
Example 4
Source File: UsersPrivilegesMetaData.java    From crate with Apache License 2.0 4 votes vote down vote up
@Override
public Version getMinimalSupportedVersion() {
    return Version.ES_V_6_1_4;
}
 
Example 5
Source File: LicenseKey.java    From crate with Apache License 2.0 4 votes vote down vote up
@Override
public Version getMinimalSupportedVersion() {
    return Version.ES_V_6_1_4;
}