diff options
author | liamfallon <liam.fallon@est.tech> | 2019-06-28 10:42:34 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-06-28 10:42:34 +0000 |
commit | 423e98641ca7fe79a1b1bb897aa8a4b17ba5ee4d (patch) | |
tree | 9d3fd39c5e3dde70afa55d7cc2d399c14be4baf8 /testsuites/integration/integration-executor-test | |
parent | d139a68e359bfaa0e1ea1038345dd28e1869aca9 (diff) |
Replace non-Javadoc comments with inheritDocs
Copyright headers not changed as this review only amends comments.
Issue-ID: POLICY-1791
Change-Id: Icbeb2c6e591b3b160ae102bb67aef2d407924a4d
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'testsuites/integration/integration-executor-test')
2 files changed, 12 insertions, 16 deletions
diff --git a/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/engine/TestApexActionListener.java b/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/engine/TestApexActionListener.java index 2860f1736..8a3d238a6 100644 --- a/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/engine/TestApexActionListener.java +++ b/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/engine/TestApexActionListener.java @@ -74,12 +74,8 @@ public class TestApexActionListener implements EnEventListener { return result; } - /* - * (non-Javadoc) - * - * @see - * org.onap.policy.apex.core.engine.engine.EnEventListener#onEnEvent(org.onap.policy.apex.core. - * engine.event.EnEvent) + /** + * {@inheritDoc}. */ @Override public void onEnEvent(final EnEvent actionEvent) { diff --git a/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/handling/TestApexSamplePolicyModelCreator.java b/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/handling/TestApexSamplePolicyModelCreator.java index 7e44dd32e..f8afc665f 100644 --- a/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/handling/TestApexSamplePolicyModelCreator.java +++ b/testsuites/integration/integration-executor-test/src/test/java/org/onap/policy/apex/testsuites/integration/executor/handling/TestApexSamplePolicyModelCreator.java @@ -41,40 +41,40 @@ public class TestApexSamplePolicyModelCreator implements TestApexModelCreator<Ax this.logicExecutorType = logicExecutorType; } - /* (non-Javadoc) - * @see org.onap.policy.apex.model.basicmodel.handling.ApexModelCreator#getModel() + /** + * {@inheritDoc}. */ @Override public AxPolicyModel getModel() { return new SampleDomainModelFactory().getSamplePolicyModel(logicExecutorType); } - /* (non-Javadoc) - * @see org.onap.policy.apex.model.basicmodel.test.TestApexModelCreator#getMalstructuredModel() + /** + * {@inheritDoc}. */ @Override public AxPolicyModel getMalstructuredModel() { return null; } - /* (non-Javadoc) - * @see org.onap.policy.apex.model.basicmodel.test.TestApexModelCreator#getObservationModel() + /** + * {@inheritDoc}. */ @Override public AxPolicyModel getObservationModel() { return null; } - /* (non-Javadoc) - * @see org.onap.policy.apex.model.basicmodel.test.TestApexModelCreator#getWarningModel() + /** + * {@inheritDoc}. */ @Override public AxPolicyModel getWarningModel() { return getModel(); } - /* (non-Javadoc) - * @see org.onap.policy.apex.model.basicmodel.test.TestApexModelCreator#getInvalidModel() + /** + * {@inheritDoc}. */ @Override public AxPolicyModel getInvalidModel() { |