Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / policy / entities / Workstep.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.client.policy.entities;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
26
27 @JsonInclude(JsonInclude.Include.NON_NULL)
28 @JsonPropertyOrder({"valueType", "string", "chars"})
29 public class Workstep {
30
31     @JsonProperty("valueType")
32     private String valueType;
33     @JsonProperty("string")
34     private String string;
35     @JsonProperty("chars")
36     private String chars;
37
38     @JsonProperty("valueType")
39     public String getValueType() {
40         return valueType;
41     }
42
43     @JsonProperty("valueType")
44     public void setValueType(String valueType) {
45         this.valueType = valueType;
46     }
47
48     public Workstep withValueType(String valueType) {
49         this.valueType = valueType;
50         return this;
51     }
52
53     @JsonProperty("string")
54     public String getString() {
55         return string;
56     }
57
58     @JsonProperty("string")
59     public void setString(String string) {
60         this.string = string;
61     }
62
63     public Workstep withString(String string) {
64         this.string = string;
65         return this;
66     }
67
68     @JsonProperty("chars")
69     public String getChars() {
70         return chars;
71     }
72
73     @JsonProperty("chars")
74     public void setChars(String chars) {
75         this.chars = chars;
76     }
77
78     public Workstep withChars(String chars) {
79         this.chars = chars;
80         return this;
81     }
82
83 }