ca.gc.aafc.dina.mapper.CustomFieldAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dina-base-api Show documentation
Show all versions of dina-base-api Show documentation
Base DINA API package for Java built on SpringBoot and Crnk
package ca.gc.aafc.dina.mapper;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marks a class to map fields with a given set of adapters.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomFieldAdapter {
/**
* Returns the adapters used to map this class.
*
* @return Returns the adapters used to map this class.
*/
Class extends DinaFieldAdapter, ?, ?, ?>>[] adapters();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy