
io.avaje.validation.spi.MetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avaje-validator Show documentation
Show all versions of avaje-validator Show documentation
validator for annotated pojos using constraint annotations and source code generation
package io.avaje.validation.spi;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* For internal use, holds metadata on generated adapters for use by code generation (Java annotation processing).
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface MetaData {
/**
* The generated ValidationAdapters.
*/
Class>[] value();
/**
* For internal use, holds metadata on generated adapters that also have factories.
*/
@interface Factory {
/**
* The generated ValidationAdapters that have a factory.
*/
Class>[] value();
}
/**
* For internal use, holds metadata on generated adapters that also have factories.
*/
@interface AnnotationFactory {
/**
* The custom Annotation ValidationAdapters.
*/
Class>[] value();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy