Add Apache license header per file
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / Value.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 java.util.Objects;
45
46 /**
47  * Value is a descriptive structure for service characteristic
48  */
49 @ApiModel(description = "Value is a descriptive structure for service characteristic")
50 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
51         date = "2018-02-19T14:00:30.767Z")
52 public class Value {
53     @JsonProperty("@type")
54     private String type = null;
55
56     @JsonProperty("@schemaLocation")
57     private String schemaLocation = null;
58
59     @JsonProperty("serviceCharacteristicValue")
60     private String serviceCharacteristicValue = null;
61
62     public Value type(String type) {
63         this.type = type;
64         return this;
65     }
66
67     /**
68      * @return type
69      **/
70     @JsonProperty("@type")
71     @ApiModelProperty(value = "")
72     public String getType() {
73         return type;
74     }
75
76     public void setType(String type) {
77         this.type = type;
78     }
79
80     public Value schemaLocation(String schemaLocation) {
81         this.schemaLocation = schemaLocation;
82         return this;
83     }
84
85     /**
86      * @return schemaLocation
87      **/
88     @JsonProperty("@schemaLocation")
89     @ApiModelProperty(value = "")
90     public String getSchemaLocation() {
91         return schemaLocation;
92     }
93
94     public void setSchemaLocation(String schemaLocation) {
95         this.schemaLocation = schemaLocation;
96     }
97
98     public Value serviceCharacteristicValue(String serviceCharacteristicValue) {
99         this.serviceCharacteristicValue = serviceCharacteristicValue;
100         return this;
101     }
102
103     /**
104      * @return serviceCharacteristicValue
105      **/
106     @JsonProperty("serviceCharacteristicValue")
107     @ApiModelProperty(value = "")
108     public String getServiceCharacteristicValue() {
109         return serviceCharacteristicValue;
110     }
111
112     public void setServiceCharacteristicValue(String serviceCharacteristicValue) {
113         this.serviceCharacteristicValue = serviceCharacteristicValue;
114     }
115
116
117     @Override
118     public boolean equals(java.lang.Object o) {
119         if (this == o) {
120             return true;
121         }
122         if (o == null || getClass() != o.getClass()) {
123             return false;
124         }
125         Value value = (Value) o;
126         return Objects.equals(this.type, value.type) && Objects.equals(this.schemaLocation, value.schemaLocation)
127                 && Objects.equals(this.serviceCharacteristicValue, value.serviceCharacteristicValue);
128     }
129
130     @Override
131     public int hashCode() {
132         return Objects.hash(type, schemaLocation, serviceCharacteristicValue);
133     }
134
135
136     @Override
137     public String toString() {
138         StringBuilder sb = new StringBuilder();
139         sb.append("class Value {\n");
140
141         sb.append("    type: ").append(toIndentedString(type)).append("\n");
142         sb.append("    schemaLocation: ").append(toIndentedString(schemaLocation)).append("\n");
143         sb.append("    serviceCharacteristicValue: ").append(toIndentedString(serviceCharacteristicValue)).append("\n");
144         sb.append("}");
145         return sb.toString();
146     }
147
148     /**
149      * Convert the given object to string with each line indented by 4 spaces (except the first
150      * line).
151      */
152     private String toIndentedString(java.lang.Object o) {
153         if (o == null) {
154             return "null";
155         }
156         return o.toString().replace("\n", "\n    ");
157     }
158 }
159