forked from TrueCloudLab/frostfs-sdk-java
11 lines
295 B
Java
11 lines
295 B
Java
package info.frostfs.sdk.annotations;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.FIELD)
|
|
public @interface Validate {
|
|
}
|