diff options
author | liamfallon <liam.fallon@est.tech> | 2021-06-24 17:18:02 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2021-06-24 17:18:57 +0100 |
commit | 1dca288c036e093a55dd2470fa4654f4e3368c45 (patch) | |
tree | 7c2463eda173d8f40835bc42a9dd79e76be81916 /gui-editors/gui-editor-apex/src/main | |
parent | 368a50d75e7a4cd17294b90321b90ef59c08c0c1 (diff) |
Update gui for checkstyle 8.43
Issue-ID: POLICY-3206
Change-Id: I5b80398352d03a0fe2853690b6b0d3019d204a7e
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'gui-editors/gui-editor-apex/src/main')
2 files changed, 11 insertions, 11 deletions
diff --git a/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/PolicyHandler.java b/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/PolicyHandler.java index a968695..f296083 100644 --- a/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/PolicyHandler.java +++ b/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/PolicyHandler.java @@ -1,7 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2018 Ericsson. All rights reserved. - * Modifications Copyright (C) 2020 Nordix Foundation. + * Modifications Copyright (C) 2020-2021 Nordix Foundation. * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); @@ -139,7 +139,7 @@ public class PolicyHandler implements RestCommandHandler { * Create the content of the policy. * * @param session the Apex model editing session - * @param jsonString the JSON string to be parsed See {@linkplain BeanPolicy} + * @param jsonbean the JSON string to be parsed See {@linkplain BeanPolicy} * @return an ApexAPIResult object. If successful then * {@link ApexApiResult#isOk()} will return true. Any messages/errors * can be retrieved using {@link ApexApiResult#getMessages()} @@ -191,7 +191,7 @@ public class PolicyHandler implements RestCommandHandler { * * @param session the Apex model editing session * @param policyName the policy name - * @param policVersion the policy version + * @param policyVersion the policy version * @param stateName the name of the state * @param stateBean the information on the state to create * @return an ApexAPIResult object. If successful then @@ -228,7 +228,7 @@ public class PolicyHandler implements RestCommandHandler { * * @param session the Apex model editing session * @param policyName the policy name - * @param policVersion the policy version + * @param policyVersion the policy version * @param stateName the name of the state * @param stateBean the information on the state to create * @return an ApexAPIResult object. If successful then @@ -264,7 +264,7 @@ public class PolicyHandler implements RestCommandHandler { * * @param session the Apex model editing session * @param policyName the policy name - * @param policVersion the policy version + * @param policyVersion the policy version * @param stateName the name of the state * @param stateBean the information on the state to create * @return an ApexAPIResult object. If successful then @@ -296,7 +296,7 @@ public class PolicyHandler implements RestCommandHandler { * * @param session the Apex model editing session * @param policyName the policy name - * @param policVersion the policy version + * @param policyVersion the policy version * @param stateName the name of the state * @param stateBean the information on the state to create * @return an ApexAPIResult object. If successful then @@ -343,7 +343,7 @@ public class PolicyHandler implements RestCommandHandler { * * @param session the Apex model editing session * @param policyName the policy name - * @param policVersion the policy version + * @param policyVersion the policy version * @param stateName the name of the state * @param stateBean the information on the state to create * @return an ApexAPIResult object. If successful then @@ -390,7 +390,7 @@ public class PolicyHandler implements RestCommandHandler { * * @param session the Apex model editing session * @param policyName the policy name - * @param policVersion the policy version + * @param policyVersion the policy version * @param stateName the name of the state * @param stateBean the information on the state to create * @return an ApexAPIResult object. If successful then @@ -443,7 +443,7 @@ public class PolicyHandler implements RestCommandHandler { * * @param session the Apex model editing session * @param policyName the policy name - * @param policVersion the policy version + * @param policyVersion the policy version * @param stateName the name of the state * @param stateBean the information on the state to create * @return an ApexAPIResult object. If successful then diff --git a/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/TaskHandler.java b/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/TaskHandler.java index c9f4142..ed7f915 100644 --- a/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/TaskHandler.java +++ b/gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/TaskHandler.java @@ -1,7 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2018 Ericsson. All rights reserved. - * Modifications Copyright (C) 2020 Nordix Foundation. + * Modifications Copyright (C) 2020-2021 Nordix Foundation. * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); @@ -132,7 +132,7 @@ public class TaskHandler implements RestCommandHandler { * Create the content of the task. * * @param session the Apex model editing session - * @param jsonString the JSON string to be parsed. See {@linkplain BeanTask} + * @param jsonbean the JSON string to be parsed. See {@linkplain BeanTask} * @return an ApexAPIResult object. If successful then * {@link ApexApiResult#isOk()} will return true. Any messages/errors * can be retrieved using {@link ApexApiResult#getMessages()} |