diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2019-04-23 10:26:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-23 10:26:38 +0000 |
commit | 91cc893325bf5edcc7f996c8c96085e49eff8616 (patch) | |
tree | ebc26eb1a616936263ce91e3d23534c6ebcf064e /cloudify-client | |
parent | 7bbd9b5fb38cd38de11121fb8583edf7e7f30f8b (diff) | |
parent | ff21a4818fee1353a09786ec95f6403b3fe519ef (diff) |
Merge "Reorder modifiers to comply with java standards"
Diffstat (limited to 'cloudify-client')
-rw-r--r-- | cloudify-client/src/main/java/org/onap/so/cloudify/v3/model/CancelExecutionParams.java | 4 |
1 files changed, 2 insertions, 2 deletions
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; |