diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2019-03-29 11:25:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-29 11:25:33 +0000 |
commit | 6d99c4013b43f48a891ac15dd149d4b97c6b291e (patch) | |
tree | 8683afc0f1ae4ef920bf20959628fdadaf8ef7c1 | |
parent | 6ccec5265d3431a1ca3265876b3df7bb422d9b62 (diff) | |
parent | fc476809f9a24fa327b69acd47282ce5e7cae447 (diff) |
Merge "Add @NonNull to PolicyIdent"
-rw-r--r-- | models-pap/src/main/java/org/onap/policy/models/pap/concepts/PolicyIdent.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PolicyIdent.java b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PolicyIdent.java index 2eb9df136..914840f15 100644 --- a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PolicyIdent.java +++ b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PolicyIdent.java @@ -21,6 +21,7 @@ package org.onap.policy.models.pap.concepts; import lombok.Getter; +import lombok.NonNull; import lombok.Setter; import lombok.ToString; @@ -30,6 +31,7 @@ import lombok.ToString; @Getter @Setter @ToString +@NonNull public class PolicyIdent { private String name; private String version; |