summaryrefslogtreecommitdiffstats
path: root/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java
diff options
context:
space:
mode:
authorrb7147 <rb7147@att.com>2018-02-16 13:46:06 -0500
committerrb7147 <rb7147@att.com>2018-02-16 13:49:06 -0500
commit9450c8d0102b9188933b5d26193df754a70a7157 (patch)
tree45123075abf9f8ccabe0b6d4805b202c3f234d9f /ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java
parent79343205a720ef656837275f973de93f1d26b3e9 (diff)
Added Junis for Policy ONAP-REST
Cleaned the unused constructors. Cleaned the unused code. Added Junits for all JPAS. Renamed the Junit class names on removing classes. Issue-ID: POLICY-603 Change-Id: I0709ccecd7a2f3ec49367ff85f5a6d273479493e Signed-off-by: rb7147 <rb7147@att.com>
Diffstat (limited to 'ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java')
-rw-r--r--ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java30
1 files changed, 2 insertions, 28 deletions
diff --git a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java
index 869386f69..ae01999a3 100644
--- a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java
+++ b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PEPOptions.java
@@ -2,7 +2,7 @@
* ============LICENSE_START=======================================================
* ONAP-REST
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -40,13 +40,6 @@ import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-import org.onap.policy.rest.XacmlAdminAuthorization;
-
-import org.onap.policy.common.logging.eelf.MessageCodes;
-import org.onap.policy.common.logging.eelf.PolicyLogger;
-
@Entity
@Table(name = "PEPOptions")
@@ -100,20 +93,7 @@ public class PEPOptions implements Serializable {
public void setUserModifiedBy(UserInfo userModifiedBy) {
this.userModifiedBy = userModifiedBy;
}
-
- private static Log LOGGER = LogFactory.getLog(PEPOptions.class);
-
- public PEPOptions(){
- //An empty constructor
- }
-
- public PEPOptions(String string, String userid) {
- this(string);
- }
-
- public PEPOptions(String domain) {
- this.pepName = domain;
- }
+
@PrePersist
public void prePersist() {
@@ -125,12 +105,6 @@ public class PEPOptions implements Serializable {
@PreUpdate
public void preUpdate() {
this.modifiedDate = new Date();
- try {
- this.userModifiedBy =XacmlAdminAuthorization.getUserId();;
- } catch (Exception e) {
- LOGGER.error("Exception caused While adding Modified by Role"+e);
- PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, "PEPOptions", "Exception caused While adding Modified by Role");
- }
}
public int getId() {