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

io.overcoded.repository.annotation.FindOneArray Maven / Gradle / Ivy

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 of FindOne.
 *
 * @author Adam Belak
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface FindOneArray {
    FindOne[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy