diff options
author | Swapnali Pode <SP00501638@techmahindra.com> | 2018-02-14 12:35:30 +0530 |
---|---|---|
committer | Swapnali Pode <SP00501638@techmahindra.com> | 2018-02-14 12:35:51 +0530 |
commit | a694b6879a44773d500e857699bb5a1e6e526140 (patch) | |
tree | 2badceb7710290b3281d944d85d8d09cd21dc4b7 | |
parent | 8baa15218033f9ab6741645eb380e17eb7d9c2dd (diff) |
Make drlRuleAndUIParams transient or serializable
Make drlRuleAndUIParams transient or serializable
StdPAPPolicy.java:L72
Sonar Link:
https://sonar.onap.org/project/issues?assignees=swapnalipode&id=org.onap.policy.engine%3APolicyEngineSuite&open=AWF91ipr8TZzbCgU6aom&resolved=false
Location:
src/main/java/org/onap/policy/xacml/std/pap/StdPAPPolicy.java
Change-Id: I3524881e76c69518949a622a23084e0bc8ef26a2
Issue-ID: POLICY-631
Signed-off-by: Swapnali Pode <SP00501638@techmahindra.com>
-rw-r--r-- | ONAP-XACML/src/main/java/org/onap/policy/xacml/std/pap/StdPAPPolicy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ONAP-XACML/src/main/java/org/onap/policy/xacml/std/pap/StdPAPPolicy.java b/ONAP-XACML/src/main/java/org/onap/policy/xacml/std/pap/StdPAPPolicy.java index a8c59e892..5974883ee 100644 --- a/ONAP-XACML/src/main/java/org/onap/policy/xacml/std/pap/StdPAPPolicy.java +++ b/ONAP-XACML/src/main/java/org/onap/policy/xacml/std/pap/StdPAPPolicy.java @@ -69,7 +69,7 @@ public class StdPAPPolicy implements OnapPAPPolicy, Serializable{ private String uuid = null; private String msLocation = null; private String priority = null; - private Map<String,String> drlRuleAndUIParams=null; + private transient Map<String,String> drlRuleAndUIParams=null; private String deleteCondition = null; private String dictionaryType = null; private String dictionary = null; |