@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;
}
javax.validation.NotNull.