All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.tlrx.elasticsearch.test.annotations.ElasticsearchAnalysis Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/**
 *
 */
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 {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy