diff options
author | Jim Hahn <jrh3@att.com> | 2021-08-24 13:20:26 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-08-24 15:51:34 -0400 |
commit | dc101c2ad5e27d5a0afd4e2feeb8885f24728806 (patch) | |
tree | 939e6f3690d1a9c6e63c4226a85fbda8c238d65a /examples/examples-aadm | |
parent | 53fe02c107eae2f45abfee02e5b56a8ab3c09523 (diff) |
Use CompareToBuilder
Also added lombok to test classes.
Issue-ID: POLICY-3391
Change-Id: I9ecf479f3861a2e5211b037e885029d1719b6a56
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'examples/examples-aadm')
-rw-r--r-- | examples/examples-aadm/src/test/java/org/onap/policy/apex/examples/aadm/TestApexActionListener.java | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/examples/examples-aadm/src/test/java/org/onap/policy/apex/examples/aadm/TestApexActionListener.java b/examples/examples-aadm/src/test/java/org/onap/policy/apex/examples/aadm/TestApexActionListener.java index 37a916a1e..825ce5866 100644 --- a/examples/examples-aadm/src/test/java/org/onap/policy/apex/examples/aadm/TestApexActionListener.java +++ b/examples/examples-aadm/src/test/java/org/onap/policy/apex/examples/aadm/TestApexActionListener.java @@ -24,6 +24,7 @@ package org.onap.policy.apex.examples.aadm; import java.util.ArrayList; import java.util.List; +import lombok.AllArgsConstructor; import lombok.Getter; import org.onap.policy.apex.core.engine.engine.EnEventListener; import org.onap.policy.apex.core.engine.event.EnEvent; @@ -36,22 +37,14 @@ import org.onap.policy.apex.core.engine.event.EnEvent; * * @author Liam Fallon (liam.fallon@ericsson.com) */ +@AllArgsConstructor public class TestApexActionListener implements EnEventListener { - List<EnEvent> resultEvents = new ArrayList<EnEvent>(); + private final List<EnEvent> resultEvents = new ArrayList<EnEvent>(); @Getter private final String id; /** - * Instantiates a new test apex action listener. - * - * @param id the id - */ - public TestApexActionListener(final String id) { - this.id = id; - } - - /** * Gets the result. * * @return the result |