frostfs-sdk-java/client/src/main/java/info/frostfs/sdk/annotations/NotNull.java
Ori Bruk aa3cff5a03
All checks were successful
DCO / DCO (pull_request) Successful in 47s
Verify code phase / Verify code (pull_request) Successful in 2m51s
[#27] Add more modules to CheckStyle
Signed-off-by: Ori Bruk <o.bruk@yadro.com>
2024-11-13 17:17:29 +03:00

11 lines
294 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 NotNull {
}