X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=common%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fso%2Fclient%2Fpolicy%2Fentities%2FWorkstep.java;h=1bf3ce001d77b8e93c43f5799cd84d4ff204fd07;hb=f47919f1fe367b612fa9c96d34c59f01a541e882;hp=4fbd6e2f8ad00a7c52a60cb8db943ea3f0377d9c;hpb=54452b80a1cf4d22ef750bc1377f8c1b05431d57;p=so.git diff --git a/common/src/main/java/org/onap/so/client/policy/entities/Workstep.java b/common/src/main/java/org/onap/so/client/policy/entities/Workstep.java index 4fbd6e2f8a..1bf3ce001d 100644 --- a/common/src/main/java/org/onap/so/client/policy/entities/Workstep.java +++ b/common/src/main/java/org/onap/so/client/policy/entities/Workstep.java @@ -25,63 +25,59 @@ import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyOrder; @JsonInclude(JsonInclude.Include.NON_NULL) -@JsonPropertyOrder({ -"valueType", -"string", -"chars" -}) +@JsonPropertyOrder({"valueType", "string", "chars"}) public class Workstep { -@JsonProperty("valueType") -private String valueType; -@JsonProperty("string") -private String string; -@JsonProperty("chars") -private String chars; + @JsonProperty("valueType") + private String valueType; + @JsonProperty("string") + private String string; + @JsonProperty("chars") + private String chars; -@JsonProperty("valueType") -public String getValueType() { -return valueType; - } + @JsonProperty("valueType") + public String getValueType() { + return valueType; + } -@JsonProperty("valueType") -public void setValueType(String valueType) { -this.valueType = valueType; - } + @JsonProperty("valueType") + public void setValueType(String valueType) { + this.valueType = valueType; + } -public Workstep withValueType(String valueType) { -this.valueType = valueType; -return this; - } + public Workstep withValueType(String valueType) { + this.valueType = valueType; + return this; + } -@JsonProperty("string") -public String getString() { -return string; - } + @JsonProperty("string") + public String getString() { + return string; + } -@JsonProperty("string") -public void setString(String string) { -this.string = string; - } + @JsonProperty("string") + public void setString(String string) { + this.string = string; + } -public Workstep withString(String string) { -this.string = string; -return this; - } + public Workstep withString(String string) { + this.string = string; + return this; + } -@JsonProperty("chars") -public String getChars() { -return chars; - } + @JsonProperty("chars") + public String getChars() { + return chars; + } -@JsonProperty("chars") -public void setChars(String chars) { -this.chars = chars; - } + @JsonProperty("chars") + public void setChars(String chars) { + this.chars = chars; + } -public Workstep withChars(String chars) { -this.chars = chars; -return this; - } + public Workstep withChars(String chars) { + this.chars = chars; + return this; + } }