ca.gc.aafc.dina.repository.meta.JsonApiExternalRelation 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
The newest version!
package ca.gc.aafc.dina.repository.meta;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Used to mark a Relation as an External Relation
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface JsonApiExternalRelation {
/**
* the resource type of the relation
*
* @return the resource type of the relation
*/
String type();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy