diff options
Diffstat (limited to 'core')
6 files changed, 30 insertions, 18 deletions
diff --git a/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/StateFinalizerExecutor.java b/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/StateFinalizerExecutor.java index 698a1d837..b13db033a 100644 --- a/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/StateFinalizerExecutor.java +++ b/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/StateFinalizerExecutor.java @@ -244,5 +244,7 @@ public abstract class StateFinalizerExecutor * {@inheritDoc}. */ @Override - public void setParameters(final ExecutorParameters parameters) {} + public void setParameters(final ExecutorParameters parameters) { + // Not used + } } diff --git a/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskExecutor.java b/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskExecutor.java index ab81a8490..50abeea6d 100644 --- a/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskExecutor.java +++ b/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskExecutor.java @@ -314,5 +314,7 @@ public abstract class TaskExecutor * {@inheritDoc}. */ @Override - public void setParameters(final ExecutorParameters parameters) {} + public void setParameters(final ExecutorParameters parameters) { + // Not used + } } diff --git a/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutor.java b/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutor.java index d99d6b005..3f360ea9c 100644 --- a/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutor.java +++ b/core/core-engine/src/main/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutor.java @@ -131,8 +131,8 @@ public abstract class TaskSelectExecutor implements Executor<EnEvent, AxArtifact @Override public final void executePost(final boolean returnValue) throws StateMachineException { if (!returnValue) { - String errorMessage = - "execute-post: task selection logic failed on state \"" + axState.getKey().getId() + "\""; + String errorMessage = "execute-post: task selection logic failed on state \"" + axState.getKey().getId() + + "\""; if (executionContext.getMessage() != null) { errorMessage += ", user message: " + executionContext.getMessage(); } @@ -232,5 +232,7 @@ public abstract class TaskSelectExecutor implements Executor<EnEvent, AxArtifact * {@inheritDoc}. */ @Override - public void setParameters(final ExecutorParameters parameters) {} + public void setParameters(final ExecutorParameters parameters) { + // Not used + } } diff --git a/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/java/classes/ClassUtils.java b/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/java/classes/ClassUtils.java index 16a3369fb..6da92d55e 100644 --- a/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/java/classes/ClassUtils.java +++ b/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/java/classes/ClassUtils.java @@ -60,7 +60,9 @@ public abstract class ClassUtils { /** * Private constructor used to prevent sub class instantiation. */ - private ClassUtils() {} + private ClassUtils() { + // Private constructor to block subclassing + } /** * Get the class names of all classes on the class path. WARNING: This is a heavy call, use sparingly diff --git a/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/messaging/util/MessagingUtils.java b/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/messaging/util/MessagingUtils.java index a6c3c5854..1c5f2a3a6 100644 --- a/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/messaging/util/MessagingUtils.java +++ b/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/messaging/util/MessagingUtils.java @@ -29,12 +29,13 @@ import java.net.NetworkInterface; import java.net.Socket; import java.net.UnknownHostException; import java.util.Enumeration; + import org.slf4j.ext.XLogger; import org.slf4j.ext.XLoggerFactory; /** - * The Class MessagingUtils is a class with static methods used in IPC messaging for finding free - * ports, translating host names to addresses, serializing objects and flushing object streams. + * The Class MessagingUtils is a class with static methods used in IPC messaging for finding free ports, translating + * host names to addresses, serializing objects and flushing object streams. * * @author Sajeevan Achuthan (sajeevan.achuthan@ericsson.com) */ @@ -53,11 +54,13 @@ public final class MessagingUtils { /** * Private constructor used to prevent sub class instantiation. */ - private MessagingUtils() {} + private MessagingUtils() { + // Private constructor to block subclassing + } /** - * This method searches the availability of the port, if the requested port not available, this - * method will throw an exception. + * This method searches the availability of the port, if the requested port not available, this method will throw an + * exception. * * @param port the port to check * @return the port verified as being free @@ -75,9 +78,9 @@ public final class MessagingUtils { } /** - * This method searches the availability of the port, if the requested port not available,this - * method will increment the port number and check the availability of that port, this process - * will continue until it reaches max port range which is MAX_PORT_RANGE. + * This method searches the availability of the port, if the requested port not available,this method will increment + * the port number and check the availability of that port, this process will continue until it reaches max port + * range which is MAX_PORT_RANGE. * * @param port the first port to check * @return the port that was found @@ -129,9 +132,8 @@ public final class MessagingUtils { } /** - * This method searches the availability of the port, if the requested port not available,this - * method will increment the port number and check the availability, this process will continue - * until it find port available. + * This method searches the availability of the port, if the requested port not available,this method will increment + * the port number and check the availability, this process will continue until it find port available. * * @param port the first port to check * @return the port that was found diff --git a/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ThreadUtilities.java b/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ThreadUtilities.java index b5663e452..eb4e0210b 100644 --- a/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ThreadUtilities.java +++ b/core/core-infrastructure/src/main/java/org/onap/policy/apex/core/infrastructure/threading/ThreadUtilities.java @@ -30,7 +30,9 @@ public final class ThreadUtilities { /** * Private constructor to prevent sub-classing of this class. */ - private ThreadUtilities() {} + private ThreadUtilities() { + // Private constructor to prevent subclassing + } /** * Sleeps for the specified number of milliseconds, hiding interrupt handling. |