Remove 'All rights reserved.' on apache 2 license
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / Place.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
38 package org.onap.nbi.apis.serviceorder.model;
39
40 import com.fasterxml.jackson.annotation.JsonProperty;
41 import io.swagger.annotations.ApiModel;
42 import io.swagger.annotations.ApiModelProperty;
43 import javax.validation.constraints.NotNull;
44 import java.util.Objects;
45
46 /**
47  * Used to defined a place useful for the service (for example a delivery geographical place)
48  */
49 @ApiModel(description = "Used to defined a place useful for the service (for example a delivery geographical place)")
50 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
51         date = "2018-02-19T14:00:30.767Z")
52 public class Place {
53     @JsonProperty("id")
54     private String id = null;
55
56     @JsonProperty("href")
57     private String href = null;
58
59     @JsonProperty("name")
60     private String name = null;
61
62     @JsonProperty("role")
63     private String role = null;
64
65     @JsonProperty("@referredType")
66     private String referredType = null;
67
68     @JsonProperty("@schemaLocation")
69     private String schemaLocation = null;
70
71     public Place id(String id) {
72         this.id = id;
73         return this;
74     }
75
76     /**
77      * @return id
78      **/
79     @JsonProperty("id")
80     @ApiModelProperty(value = "")
81     public String getId() {
82         return id;
83     }
84
85     public void setId(String id) {
86         this.id = id;
87     }
88
89     public Place href(String href) {
90         this.href = href;
91         return this;
92     }
93
94     /**
95      * Reference of a place (for instance in google map)
96      *
97      * @return href
98      **/
99     @JsonProperty("href")
100     @ApiModelProperty(value = "Reference of a place (for instance in google map)")
101     public String getHref() {
102         return href;
103     }
104
105     public void setHref(String href) {
106         this.href = href;
107     }
108
109     public Place name(String name) {
110         this.name = name;
111         return this;
112     }
113
114     /**
115      * @return name
116      **/
117     @JsonProperty("name")
118     @ApiModelProperty(value = "")
119     public String getName() {
120         return name;
121     }
122
123     public void setName(String name) {
124         this.name = name;
125     }
126
127     public Place role(String role) {
128         this.role = role;
129         return this;
130     }
131
132     /**
133      * The role of the place (e.g. delivery address, install site etc)
134      *
135      * @return role
136      **/
137     @JsonProperty("role")
138     @ApiModelProperty(required = true, value = "The role of the place (e.g. delivery address, install site etc)")
139     @NotNull
140     public String getRole() {
141         return role;
142     }
143
144     public void setRole(String role) {
145         this.role = role;
146     }
147
148     public Place referredType(String referredType) {
149         this.referredType = referredType;
150         return this;
151     }
152
153     /**
154      * @return referredType
155      **/
156     @JsonProperty("@referredType")
157     @ApiModelProperty(value = "")
158     public String getReferredType() {
159         return referredType;
160     }
161
162     public void setReferredType(String referredType) {
163         this.referredType = referredType;
164     }
165
166     public Place schemaLocation(String schemaLocation) {
167         this.schemaLocation = schemaLocation;
168         return this;
169     }
170
171     /**
172      * @return schemaLocation
173      **/
174     @JsonProperty("@schemaLocation")
175     @ApiModelProperty(value = "")
176     public String getSchemaLocation() {
177         return schemaLocation;
178     }
179
180     public void setSchemaLocation(String schemaLocation) {
181         this.schemaLocation = schemaLocation;
182     }
183
184
185     @Override
186     public boolean equals(java.lang.Object o) {
187         if (this == o) {
188             return true;
189         }
190         if (o == null || getClass() != o.getClass()) {
191             return false;
192         }
193         Place place = (Place) o;
194         return Objects.equals(this.id, place.id) && Objects.equals(this.href, place.href)
195                 && Objects.equals(this.name, place.name) && Objects.equals(this.role, place.role)
196                 && Objects.equals(this.referredType, place.referredType)
197                 && Objects.equals(this.schemaLocation, place.schemaLocation);
198     }
199
200     @Override
201     public int hashCode() {
202         return Objects.hash(id, href, name, role, referredType, schemaLocation);
203     }
204
205
206     @Override
207     public String toString() {
208         StringBuilder sb = new StringBuilder();
209         sb.append("class Place {\n");
210
211         sb.append("    id: ").append(toIndentedString(id)).append("\n");
212         sb.append("    href: ").append(toIndentedString(href)).append("\n");
213         sb.append("    name: ").append(toIndentedString(name)).append("\n");
214         sb.append("    role: ").append(toIndentedString(role)).append("\n");
215         sb.append("    referredType: ").append(toIndentedString(referredType)).append("\n");
216         sb.append("    schemaLocation: ").append(toIndentedString(schemaLocation)).append("\n");
217         sb.append("}");
218         return sb.toString();
219     }
220
221     /**
222      * Convert the given object to string with each line indented by 4 spaces (except the first
223      * line).
224      */
225     private String toIndentedString(java.lang.Object o) {
226         if (o == null) {
227             return "null";
228         }
229         return o.toString().replace("\n", "\n    ");
230     }
231 }
232