diff options
Diffstat (limited to 'plugins/plugins-executor/plugins-executor-mvel')
-rw-r--r-- | plugins/plugins-executor/plugins-executor-mvel/src/main/java/org/onap/policy/apex/plugins/executor/mvel/MvelExecutorParameters.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/plugins-executor/plugins-executor-mvel/src/main/java/org/onap/policy/apex/plugins/executor/mvel/MvelExecutorParameters.java b/plugins/plugins-executor/plugins-executor-mvel/src/main/java/org/onap/policy/apex/plugins/executor/mvel/MvelExecutorParameters.java index 7b57ad446..241d75702 100644 --- a/plugins/plugins-executor/plugins-executor-mvel/src/main/java/org/onap/policy/apex/plugins/executor/mvel/MvelExecutorParameters.java +++ b/plugins/plugins-executor/plugins-executor-mvel/src/main/java/org/onap/policy/apex/plugins/executor/mvel/MvelExecutorParameters.java @@ -35,8 +35,8 @@ public class MvelExecutorParameters extends ExecutorParameters { * Constructor that sets the abstract implementation classes. */ public MvelExecutorParameters() { - this.setTaskExecutorPluginClass(MvelTaskExecutor.class.getCanonicalName()); - this.setTaskSelectionExecutorPluginClass(MvelTaskSelectExecutor.class.getCanonicalName()); - this.setStateFinalizerExecutorPluginClass(MvelStateFinalizerExecutor.class.getCanonicalName()); + this.setTaskExecutorPluginClass(MvelTaskExecutor.class.getName()); + this.setTaskSelectionExecutorPluginClass(MvelTaskSelectExecutor.class.getName()); + this.setStateFinalizerExecutorPluginClass(MvelStateFinalizerExecutor.class.getName()); } } |