aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop
diff options
context:
space:
mode:
authorTaka Cho <takamune.cho@att.com>2020-06-15 16:55:00 -0400
committerTaka Cho <takamune.cho@att.com>2020-06-16 12:32:43 -0400
commit7c81375a9a80febce000e3d6fafbc828b3dcf48d (patch)
treeec049adf755fb6fe95756df49d540edffb0f0249 /controlloop
parent586a5d357470e4ab7e22481c852dd1cd1ace352d (diff)
fix sonar issue for m2/base
-using {} in logger in stead -diamond operator (<>) to reduce the verbosity of generics code. -rename this method name to match the regular expression '^[a-z][a-zA-Z0-9]*$' Issue-ID: POLICY-2616 Change-Id: I8e722af52b08382ca53190a33a3a27ad1e7d4830 Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'controlloop')
-rw-r--r--controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Transaction.java18
1 files changed, 8 insertions, 10 deletions
diff --git a/controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Transaction.java b/controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Transaction.java
index e92f6a234..41c251e2a 100644
--- a/controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Transaction.java
+++ b/controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Transaction.java
@@ -64,8 +64,7 @@ public class Transaction implements Serializable {
// use 'ServiceLoader' to locate all of the 'Actor' implementations
for (Actor actor :
ServiceLoader.load(Actor.class, Actor.class.getClassLoader())) {
- logger.debug("Actor: " + actor.getName() + ", "
- + actor.getClass());
+ logger.debug("Actor: {}, {}", actor.getName(), actor.getClass());
nameToActor.put(actor.getName(), actor);
}
}
@@ -117,7 +116,7 @@ public class Transaction implements Serializable {
private String message = null;
// this table maps a class name into the associated adjunct
- private Map<Class, Adjunct> adjuncts = new HashMap<>();
+ private Map<Class<?>, Adjunct> adjuncts = new HashMap<>();
/**
* Constructor - initialize a 'Transaction' instance
@@ -268,7 +267,7 @@ public class Transaction implements Serializable {
onsetAdapter.createNotification(event == null ? this.onset : event);
// include entire history
- notification.setHistory(new ArrayList<ControlLoopOperation>(history));
+ notification.setHistory(new ArrayList<>(history));
return notification;
}
@@ -290,8 +289,7 @@ public class Transaction implements Serializable {
currentOperation.incomingMessage(object);
notification = processResult(currentOperation.getResult());
} else {
- logger.error("'Transaction' received unexpected message: "
- + object);
+ logger.error("'Transaction' received unexpected message: {}", object);
}
return notification;
}
@@ -342,7 +340,7 @@ public class Transaction implements Serializable {
onsetAdapter.createNotification(onset);
notification.setNotification(ControlLoopNotificationType.OPERATION);
notification.setMessage(histEntry.toHistory());
- notification.setHistory(new LinkedList<ControlLoopOperation>());
+ notification.setHistory(new LinkedList<>());
for (ControlLoopOperation clo : history) {
if (histEntry.getOperation().equals(clo.getOperation())
&& histEntry.getActor().equals(clo.getActor())) {
@@ -417,7 +415,7 @@ public class Transaction implements Serializable {
ControlLoopOperation saveHistEntry = histEntry;
completeHistEntry(result);
- final ControlLoopNotification notification = processResult_HistEntry(saveHistEntry, result);
+ final ControlLoopNotification notification = processResultHistEntry(saveHistEntry, result);
// If there is a message from the operation then we set it to be
// used by the control loop notifications
@@ -474,7 +472,7 @@ public class Transaction implements Serializable {
}
// returns a notification message based on the history entry
- private ControlLoopNotification processResult_HistEntry(ControlLoopOperation hist, PolicyResult result) {
+ private ControlLoopNotification processResultHistEntry(ControlLoopOperation hist, PolicyResult result) {
if (hist == null) {
return null;
}
@@ -489,7 +487,7 @@ public class Transaction implements Serializable {
// include the subset of history that pertains to this
// actor and operation
- notification.setHistory(new LinkedList<ControlLoopOperation>());
+ notification.setHistory(new LinkedList<>());
for (ControlLoopOperation clo : history) {
if (hist.getOperation().equals(clo.getOperation())
&& hist.getActor().equals(clo.getActor())) {