From: Sindhuri.A Date: Mon, 22 Apr 2019 09:23:47 +0000 (+0530) Subject: Reorder modifiers to comply with java standards X-Git-Tag: 1.5.2~428^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ff21a4818fee1353a09786ec95f6403b3fe519ef;p=so.git Reorder modifiers to comply with java standards Reorder modifiers to comply with java standards CancelExecutionParams class Issue-ID: SO-1490 Change-Id: Id2eb6862482dbcaeb349ab466f44d54130d699a3 Signed-off-by: Sindhuri.A --- diff --git a/cloudify-client/src/main/java/org/onap/so/cloudify/v3/model/CancelExecutionParams.java b/cloudify-client/src/main/java/org/onap/so/cloudify/v3/model/CancelExecutionParams.java index 0fbe1fc33d..7f96b8f7c6 100644 --- a/cloudify-client/src/main/java/org/onap/so/cloudify/v3/model/CancelExecutionParams.java +++ b/cloudify-client/src/main/java/org/onap/so/cloudify/v3/model/CancelExecutionParams.java @@ -30,8 +30,8 @@ public class CancelExecutionParams implements Serializable { @JsonProperty("action") private String action; - public final static String CANCEL_ACTION = "cancel"; - public final static String FORCE_CANCEL_ACTION = "force-cancel"; + public static final String CANCEL_ACTION = "cancel"; + public static final String FORCE_CANCEL_ACTION = "force-cancel"; public String getAction() { return action;