diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-09-08 11:52:11 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-09-08 15:55:20 +0000 |
commit | bf2a2faad8e56abfe39cba37fe5e8cee6bfe3a5c (patch) | |
tree | 90c4369b689289e155fff7b5ebaf23dc2fe4d1bd /controlloop/common/actors/actor.appc | |
parent | 66e82ed4ee7bfb98758d62647ef2e771f869b280 (diff) |
Clearing sonar critical for missing serialization
These classes should be serializable in order to remove the sonar critical.
Also clearing unused import/code messages.
Issue-ID: POLICY-115
Change-Id: I25e504f6edae9fb38080e7d4d33b2b3e4cde4637
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'controlloop/common/actors/actor.appc')
-rw-r--r-- | controlloop/common/actors/actor.appc/src/main/java/org/onap/policy/controlloop/actor/appc/APPCActorServiceProvider.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/controlloop/common/actors/actor.appc/src/main/java/org/onap/policy/controlloop/actor/appc/APPCActorServiceProvider.java b/controlloop/common/actors/actor.appc/src/main/java/org/onap/policy/controlloop/actor/appc/APPCActorServiceProvider.java index e7b7d2371..2d2992106 100644 --- a/controlloop/common/actors/actor.appc/src/main/java/org/onap/policy/controlloop/actor/appc/APPCActorServiceProvider.java +++ b/controlloop/common/actors/actor.appc/src/main/java/org/onap/policy/controlloop/actor/appc/APPCActorServiceProvider.java @@ -24,7 +24,6 @@ import java.util.Collections; import java.util.List; import org.onap.policy.controlloop.VirtualControlLoopEvent; -import org.onap.policy.controlloop.actor.appclcm.AppcLcmActorServiceProvider; import org.onap.policy.appc.CommonHeader; import org.onap.policy.appc.Request; import org.onap.policy.controlloop.ControlLoopOperation; @@ -101,9 +100,7 @@ public class APPCActorServiceProvider implements Actor { * specified in the yaml, the target vnf-id is retrieved by * a named query to A&AI. */ - String resourceId = policy.getTarget().getResourceID(); - String sourceVnfId = onset.AAI.get("generic-vnf.vnf-id"); - String vnfId = "test"; //AppcLcmActorServiceProvider.vnfNamedQuery(resourceId, sourceVnfId); + String vnfId = "test"; /* * For now Policy generates the PG Streams as a demo, in the |