From 5be846bcdbe6e9dfa3b81e4b95de37acea18d1a2 Mon Sep 17 00:00:00 2001 From: "a.sreekumar" Date: Fri, 21 Jun 2019 11:21:14 +0000 Subject: Replace uses of getCanonicalName() with getName() in APEX Change-Id: Ifcd8866e65a7bc1238d5a4137f7bad288a5bfb3b Issue-ID: POLICY-1861 Signed-off-by: a.sreekumar --- .../policy/apex/plugins/executor/jruby/JrubyExecutorParameters.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/plugins-executor/plugins-executor-jruby/src') diff --git a/plugins/plugins-executor/plugins-executor-jruby/src/main/java/org/onap/policy/apex/plugins/executor/jruby/JrubyExecutorParameters.java b/plugins/plugins-executor/plugins-executor-jruby/src/main/java/org/onap/policy/apex/plugins/executor/jruby/JrubyExecutorParameters.java index 0245cd80d..33d863632 100644 --- a/plugins/plugins-executor/plugins-executor-jruby/src/main/java/org/onap/policy/apex/plugins/executor/jruby/JrubyExecutorParameters.java +++ b/plugins/plugins-executor/plugins-executor-jruby/src/main/java/org/onap/policy/apex/plugins/executor/jruby/JrubyExecutorParameters.java @@ -35,8 +35,8 @@ public class JrubyExecutorParameters extends ExecutorParameters { * Constructor that sets the abstract implementation classes. */ public JrubyExecutorParameters() { - this.setTaskExecutorPluginClass(JrubyTaskExecutor.class.getCanonicalName()); - this.setTaskSelectionExecutorPluginClass(JrubyTaskSelectExecutor.class.getCanonicalName()); - this.setStateFinalizerExecutorPluginClass(JrubyStateFinalizerExecutor.class.getCanonicalName()); + this.setTaskExecutorPluginClass(JrubyTaskExecutor.class.getName()); + this.setTaskSelectionExecutorPluginClass(JrubyTaskSelectExecutor.class.getName()); + this.setStateFinalizerExecutorPluginClass(JrubyStateFinalizerExecutor.class.getName()); } } -- cgit 1.2.3-korg