diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-02-13 22:44:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-13 22:44:07 +0000 |
commit | eaca8f8d4609b0aed5a829d9d53e29e4543feaad (patch) | |
tree | 51a5b5f30b28a96c2f259842b582aedfbd560f3e /ONAP-REST/src/main/java | |
parent | 4b76cc3f5b951c8b476b1f13ebb798a2ec4a7277 (diff) | |
parent | ef9258807505ff24e8221bae25d06ab65029397c (diff) |
Merge "Added Junits for Policy PAP-REST"
Diffstat (limited to 'ONAP-REST/src/main/java')
-rw-r--r-- | ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ClosedLoopD2Services.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ClosedLoopD2Services.java b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ClosedLoopD2Services.java index c69476fac..576889504 100644 --- a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ClosedLoopD2Services.java +++ b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ClosedLoopD2Services.java @@ -53,9 +53,6 @@ import org.onap.policy.rest.XacmlAdminAuthorization; public class ClosedLoopD2Services implements Serializable{ private static final long serialVersionUID = 1L; - private static String domain; - - @Id @Column(name ="id") @GeneratedValue(strategy = GenerationType.AUTO) @@ -105,14 +102,6 @@ public class ClosedLoopD2Services implements Serializable{ public ClosedLoopD2Services(){ //An empty constructor } - - public ClosedLoopD2Services(String string, String userid) { - this(domain); - } - - public ClosedLoopD2Services(String domain) { - this.serviceName = domain; - } @PrePersist public void prePersist() { |