4d8d6ec0e406b7ec5db701020c1ce7cd6bf99f99
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / ServiceCharacteristic.java
1 /**
2  *
3  *     Copyright (c) 2017 Orange.  All rights reserved.
4  *
5  *     Licensed under the Apache License, Version 2.0 (the "License");
6  *     you may not use this file except in compliance with the License.
7  *     You may obtain a copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *     Unless required by applicable law or agreed to in writing, software
12  *     distributed under the License is distributed on an "AS IS" BASIS,
13  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *     See the License for the specific language governing permissions and
15  *     limitations under the License.
16  */
17 /*
18  * API ServiceOrder serviceOrder API designed for ONAP Beijing Release. This API is build from TMF
19  * open API16.5 + applied TMF guideline 3.0
20  *
21  * OpenAPI spec version: 0.1.1_inProgress
22  * 
23  *
24  * NOTE: This class is auto generated by the swagger code generator program.
25  * https://github.com/swagger-api/swagger-codegen.git Do not edit the class manually.
26  *
27  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
28  * in compliance with the License. You may obtain a copy of the License at
29  *
30  * http://www.apache.org/licenses/LICENSE-2.0
31  *
32  * Unless required by applicable law or agreed to in writing, software distributed under the License
33  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
34  * or implied. See the License for the specific language governing permissions and limitations under
35  * the License.
36  */
37
38
39 package org.onap.nbi.apis.serviceorder.model;
40
41 import com.fasterxml.jackson.annotation.JsonProperty;
42 import io.swagger.annotations.ApiModel;
43 import io.swagger.annotations.ApiModelProperty;
44 import javax.validation.constraints.NotNull;
45 import java.util.Objects;
46
47 /**
48  * ServiceCharacteristic
49  */
50 @ApiModel(description = "ServiceCharacteristic")
51 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
52         date = "2018-02-19T14:00:30.767Z")
53 public class ServiceCharacteristic {
54     @JsonProperty("name")
55     private String name = null;
56
57     @JsonProperty("valueType")
58     private String valueType = null;
59
60     @JsonProperty("value")
61     private Value value = null;
62
63     public ServiceCharacteristic name(String name) {
64         this.name = name;
65         return this;
66     }
67
68     /**
69      * Name of characteristic
70      *
71      * @return name
72      **/
73     @JsonProperty("name")
74     @ApiModelProperty(required = true, value = "Name of characteristic")
75     @NotNull
76     public String getName() {
77         return name;
78     }
79
80     public void setName(String name) {
81         this.name = name;
82     }
83
84     public ServiceCharacteristic valueType(String valueType) {
85         this.valueType = valueType;
86         return this;
87     }
88
89     /**
90      * @return valueType
91      **/
92     @JsonProperty("valueType")
93     @ApiModelProperty(value = "")
94     public String getValueType() {
95         return valueType;
96     }
97
98     public void setValueType(String valueType) {
99         this.valueType = valueType;
100     }
101
102     public ServiceCharacteristic value(Value value) {
103         this.value = value;
104         return this;
105     }
106
107     /**
108      * @return value
109      **/
110     @JsonProperty("value")
111     @ApiModelProperty(value = "")
112     public Value getValue() {
113         return value;
114     }
115
116     public void setValue(Value value) {
117         this.value = value;
118     }
119
120
121     @Override
122     public boolean equals(java.lang.Object o) {
123         if (this == o) {
124             return true;
125         }
126         if (o == null || getClass() != o.getClass()) {
127             return false;
128         }
129         ServiceCharacteristic serviceCharacteristic = (ServiceCharacteristic) o;
130         return Objects.equals(this.name, serviceCharacteristic.name)
131                 && Objects.equals(this.valueType, serviceCharacteristic.valueType)
132                 && Objects.equals(this.value, serviceCharacteristic.value);
133     }
134
135     @Override
136     public int hashCode() {
137         return Objects.hash(name, valueType, value);
138     }
139
140
141     @Override
142     public String toString() {
143         StringBuilder sb = new StringBuilder();
144         sb.append("class ServiceCharacteristic {\n");
145
146         sb.append("    name: ").append(toIndentedString(name)).append("\n");
147         sb.append("    valueType: ").append(toIndentedString(valueType)).append("\n");
148         sb.append("    value: ").append(toIndentedString(value)).append("\n");
149         sb.append("}");
150         return sb.toString();
151     }
152
153     /**
154      * Convert the given object to string with each line indented by 4 spaces (except the first
155      * line).
156      */
157     private String toIndentedString(java.lang.Object o) {
158         if (o == null) {
159             return "null";
160         }
161         return o.toString().replace("\n", "\n    ");
162     }
163 }
164