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

com.github.mikesafonov.specification.builder.starter.annotations.Join Maven / Gradle / Ivy

There is a newer version: 1.10.0
Show newest version
package com.github.mikesafonov.specification.builder.starter.annotations;

import javax.persistence.criteria.JoinType;
import java.lang.annotation.*;

/**
 * Specifies a field for joining using join type {@link #type()}
 *
 * @author MikeSafonov
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Repeatable(Joins.class)
public @interface Join {
    String value();

    JoinType type() default JoinType.INNER;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy