aboutsummaryrefslogtreecommitdiffstats
path: root/PolicyEngineAPI/src
diff options
context:
space:
mode:
authorwaqas.ikram <waqas.ikram@ericsson.com>2018-05-08 17:46:40 +0100
committerwaqas.ikram <waqas.ikram@ericsson.com>2018-05-08 17:49:30 +0100
commite11041217af830d701592268136f4cd6fd8fbb39 (patch)
tree72b522ae7e0dd55cbb87bc1b163961cb840fde0b /PolicyEngineAPI/src
parentfb81296a07d30d230de4050faaffad90ceae4901 (diff)
fixing NullPointException incase of db exception
Making changes for NullPointerException it was triggered by - SQL Query Failed in PAP return unhandled reponse code > activeVersion variable is set to null > if statement in DeletePolicyService (!activeVersion.equalsIgnoreCase("0") result into NullPointerException Change-Id: Iad9de0d31b6cf16d1eafd6175d1c355b07481db9 Issue-ID: POLICY-773 Signed-off-by: waqas.ikram <waqas.ikram@ericsson.com>
Diffstat (limited to 'PolicyEngineAPI/src')
-rw-r--r--PolicyEngineAPI/src/main/java/org/onap/policy/api/DeletePolicyParameters.java182
1 files changed, 99 insertions, 83 deletions
diff --git a/PolicyEngineAPI/src/main/java/org/onap/policy/api/DeletePolicyParameters.java b/PolicyEngineAPI/src/main/java/org/onap/policy/api/DeletePolicyParameters.java
index 4f6779291..af2aed79c 100644
--- a/PolicyEngineAPI/src/main/java/org/onap/policy/api/DeletePolicyParameters.java
+++ b/PolicyEngineAPI/src/main/java/org/onap/policy/api/DeletePolicyParameters.java
@@ -23,92 +23,108 @@ package org.onap.policy.api;
import java.util.UUID;
/**
- * <code>PushPolicyParameters</code> defines the Policy Parameters
- * which are required to Push a Policy to PDPGroup.
+ * <code>PushPolicyParameters</code> defines the Policy Parameters which are required to Push a
+ * Policy to PDPGroup.
*
* @version 0.1
*/
public class DeletePolicyParameters {
-
- private String policyName;
- private String policyType;
- private String policyComponent;
- private DeletePolicyCondition deleteCondition;
- private String pdpGroup;
- private UUID requestID;
-
-
- /**
- * @return the policyName
- */
- public String getPolicyName() {
- return policyName;
- }
- /**
- * @param policyName the policyName to set
- */
- public void setPolicyName(String policyName) {
- this.policyName = policyName;
- }
- /**
- * @return the policyComponent
- */
- public String getPolicyComponent() {
- return policyComponent;
- }
- /**
- * @return the policyType
- */
- public String getPolicyType() {
- return policyType;
- }
- /**
- * @param policyType the policyType to set
- */
- public void setPolicyType(String policyType) {
- this.policyType = policyType;
- }
- /**
- * @param policyComponent the policyComponent to set
- */
- public void setPolicyComponent(String policyComponent) {
- this.policyComponent = policyComponent;
- }
- /**
- * @return the deleteCondition
- */
- public DeletePolicyCondition getDeleteCondition() {
- return deleteCondition;
- }
- /**
- * @param deleteCondition the deleteCondition to set
- */
- public void setDeleteCondition(DeletePolicyCondition deleteCondition) {
- this.deleteCondition = deleteCondition;
- }
- /**
- * @return the requestID
- */
- public UUID getRequestID() {
- return requestID;
- }
- /**
- * @param requestID the requestID to set
- */
- public void setRequestID(UUID requestID) {
- this.requestID = requestID;
- }
- /**
- * @return the pdpGroup
- */
- public String getPdpGroup() {
- return pdpGroup;
- }
- /**
- * @param pdpGroup the pdpGroup to set
- */
- public void setPdpGroup(String pdpGroup) {
- this.pdpGroup = pdpGroup;
- }
+ private String policyName;
+ private String policyType;
+ private String policyComponent;
+ private DeletePolicyCondition deleteCondition;
+ private String pdpGroup;
+ private UUID requestID;
+
+ /**
+ * @return the policyName
+ */
+ public String getPolicyName() {
+ return policyName;
+ }
+
+ /**
+ * @param policyName the policyName to set
+ */
+ public void setPolicyName(final String policyName) {
+ this.policyName = policyName;
+ }
+
+ /**
+ * @return the policyComponent
+ */
+ public String getPolicyComponent() {
+ return policyComponent;
+ }
+
+ /**
+ * @return the policyType
+ */
+ public String getPolicyType() {
+ return policyType;
+ }
+
+ /**
+ * @param policyType the policyType to set
+ */
+ public void setPolicyType(final String policyType) {
+ this.policyType = policyType;
+ }
+
+ /**
+ * @param policyComponent the policyComponent to set
+ */
+ public void setPolicyComponent(final String policyComponent) {
+ this.policyComponent = policyComponent;
+ }
+
+ /**
+ * @return the deleteCondition
+ */
+ public DeletePolicyCondition getDeleteCondition() {
+ return deleteCondition;
+ }
+
+ /**
+ * @param deleteCondition the deleteCondition to set
+ */
+ public void setDeleteCondition(final DeletePolicyCondition deleteCondition) {
+ this.deleteCondition = deleteCondition;
+ }
+
+ /**
+ * @return the requestID
+ */
+ public UUID getRequestID() {
+ return requestID;
+ }
+
+ /**
+ * @param requestID the requestID to set
+ */
+ public void setRequestID(final UUID requestID) {
+ this.requestID = requestID;
+ }
+
+ /**
+ * @return the pdpGroup
+ */
+ public String getPdpGroup() {
+ return pdpGroup;
+ }
+
+ /**
+ * @param pdpGroup the pdpGroup to set
+ */
+ public void setPdpGroup(final String pdpGroup) {
+ this.pdpGroup = pdpGroup;
+ }
+
+ @Override
+ public String toString() {
+ return "DeletePolicyParameters [policyName=" + policyName + ", policyType=" + policyType + ", policyComponent="
+ + policyComponent + ", deleteCondition=" + deleteCondition + ", pdpGroup=" + pdpGroup + ", requestID="
+ + requestID + "]";
+ }
}