diff options
author | Jorge Hernandez <jh1730@att.com> | 2017-07-26 10:09:16 -0500 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2017-07-26 23:21:18 -0500 |
commit | c00931cffb0d6e1e8098a929340d442bc8e5f4f5 (patch) | |
tree | a42f9716f1c0582c2aefd71ecba3c1a6e253fd93 /policy-management/src/main/java | |
parent | 4d38fa9c091dac1247239411e731c520faeeec21 (diff) |
[POLICY-119] noop endpoint and refactoring
noop endpoint was added to support communication between drools-applications
and policy-framework using the common "PolicyEngine.deliver(topic, message)"
mechanins. The endpoint type will be noop. This can be used for testing
sanity of any given drools-application from the framework.
An intial refactoring of the endpoints hierarchy was added too.
Change-Id: I62dbe75f511dd6215406fbd7cf0dd5a88bc1efc3
Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'policy-management/src/main/java')
-rw-r--r-- | policy-management/src/main/java/org/openecomp/policy/drools/controller/DroolsControllerFactory.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/policy-management/src/main/java/org/openecomp/policy/drools/controller/DroolsControllerFactory.java b/policy-management/src/main/java/org/openecomp/policy/drools/controller/DroolsControllerFactory.java index 276573eb..625eef56 100644 --- a/policy-management/src/main/java/org/openecomp/policy/drools/controller/DroolsControllerFactory.java +++ b/policy-management/src/main/java/org/openecomp/policy/drools/controller/DroolsControllerFactory.java @@ -241,6 +241,11 @@ class IndexedDroolsControllerFactory implements DroolsControllerFactory { } else { PROPERTY_TOPIC_ENTITY_PREFIX = PolicyProperties.PROPERTY_DMAAP_SINK_TOPICS + "."; } + } else if (commInfra == CommInfrastructure.NOOP) { + if (!isSource) + PROPERTY_TOPIC_ENTITY_PREFIX = PolicyProperties.PROPERTY_NOOP_SINK_TOPICS + "."; + else + continue; } else { throw new IllegalArgumentException("Invalid Communication Infrastructure: " + commInfra); } |