From ff21a4818fee1353a09786ec95f6403b3fe519ef Mon Sep 17 00:00:00 2001 From: "Sindhuri.A" Date: Mon, 22 Apr 2019 14:53:47 +0530 Subject: 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 --- .../java/org/onap/so/cloudify/v3/model/CancelExecutionParams.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cloudify-client') 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; -- cgit 1.2.3-korg