io.overcoded.repository.annotation.FindAllArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamic-repository Show documentation
Show all versions of dynamic-repository Show documentation
Simple annotation processor which can generate JpaRepository interfaces.
The newest version!
package io.overcoded.repository.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* A helper class to allow repeatable annotations.
*
* @author Diana Ladanyi
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface FindAllArray {
FindAll[] value();
}