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