io.katharsis.repository.annotations.JsonApiFindOneTarget Maven / Gradle / Ivy
package io.katharsis.repository.annotations;
import io.katharsis.queryParams.QueryParams;
import java.io.Serializable;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* Method annotated with this annotation will be used to perform find one relationship resource on a particular
* resource. The method must be defined in a class annotated with {@link JsonApiRelationshipRepository}.
*
*
* The requirements for the method parameters are as follows:
*
*
* - An identifier of a source resource
* - Relationship's field name
*
*
* The return value must be a resources of {@link JsonApiRelationshipRepository#target()} type.
*
*
* @see io.katharsis.repository.RelationshipRepository#findOneTarget(Serializable, String, QueryParams)
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface JsonApiFindOneTarget {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy