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

ca.gc.aafc.dina.mapper.CustomFieldAdapter Maven / Gradle / Ivy

There is a newer version: 0.132
Show newest version
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>[] adapters();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy