com.github.tlrx.elasticsearch.test.annotations.ElasticsearchAnalysis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-test Show documentation
Show all versions of elasticsearch-test Show documentation
elasticsearch-test, a framework that makes ElasticSearch unit testing a breeze
/**
*
*/
package com.github.tlrx.elasticsearch.test.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* ElasticsearchAnalysis Annotation, used to define analysis settings of an
* ElasticsearchIndex
*
* @author tlrx
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface ElasticsearchAnalysis {
/**
* Filters
*/
ElasticsearchFilter[] filters() default {};
/**
* Analyzers
*/
ElasticsearchAnalyzer[] analyzers() default {};
}