diff options
Diffstat (limited to 'testsuites/integration/integration-executor-test/src')
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() { |