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

io.konga.metadata.annotations.Searchable Maven / Gradle / Ivy

package io.konga.metadata.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD})
public @interface Searchable {

	String value() default "";
	String[] fields() default {};
	Raw[] configuration() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy