Skip to content

@ONotNull

Scope: property

Marks property as not null (orient scheme marker)

public class MyModel {
    @ONotNull
    private String foo;
}

May be used to unset not null marker:

public class MyModel {
    @ONotNull(false)
    private String foo;
}
Annotation prefixed to avoid conflicts with javax.validation.NotNull.