#1456 - io.ebean.annotation.NotNull not honored by @ManyToOne property

This commit is contained in:
rob bygrave
2018-07-18 19:36:41 +12:00
parent fda930a162
commit 2d44d06f36
4 changed files with 11 additions and 2 deletions
@@ -1,5 +1,7 @@
package org.tests.merge;
import io.ebean.annotation.NotNull;
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
@@ -12,7 +14,8 @@ public class MContactMessage extends MBase {
private String notes;
@ManyToOne(optional = false)
@NotNull
@ManyToOne
private MContact contact;
public MContactMessage(String title, String subject) {