Remove 'All rights reserved.' on apache 2 license
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / RelatedParty.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  * A related party defines party which are involved in this order and the role they are playing
48  */
49 @ApiModel(description = "A related party defines party which are involved in this order and the role they are playing")
50 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
51         date = "2018-02-19T14:00:30.767Z")
52 public class RelatedParty {
53     @JsonProperty("id")
54     private String id = null;
55
56     @JsonProperty("href")
57     private String href = null;
58
59     @JsonProperty("role")
60     private String role = null;
61
62     @JsonProperty("name")
63     private String name = null;
64
65     @JsonProperty("@referredType")
66     private String referredType = null;
67
68     public RelatedParty id(String id) {
69         this.id = id;
70         return this;
71     }
72
73     /**
74      * Unique identifier of a related party
75      *
76      * @return id
77      **/
78     @JsonProperty("id")
79     @ApiModelProperty(required = true, value = "Unique identifier of a related party")
80     @NotNull
81     public String getId() {
82         return id;
83     }
84
85     public void setId(String id) {
86         this.id = id;
87     }
88
89     public RelatedParty href(String href) {
90         this.href = href;
91         return this;
92     }
93
94     /**
95      * An hyperlink to the party
96      *
97      * @return href
98      **/
99     @JsonProperty("href")
100     @ApiModelProperty(value = "An hyperlink to the party")
101     public String getHref() {
102         return href;
103     }
104
105     public void setHref(String href) {
106         this.href = href;
107     }
108
109     public RelatedParty role(String role) {
110         this.role = role;
111         return this;
112     }
113
114     /**
115      * The role of the related party (e.g. Owner, requester, fullfiller etc)
116      *
117      * @return role
118      **/
119     @JsonProperty("role")
120     @ApiModelProperty(required = true, value = "The role of the related party (e.g. Owner, requester, fullfiller etc)")
121     @NotNull
122     public String getRole() {
123         return role;
124     }
125
126     public void setRole(String role) {
127         this.role = role;
128     }
129
130     public RelatedParty name(String name) {
131         this.name = name;
132         return this;
133     }
134
135     /**
136      * Name of the related party
137      *
138      * @return name
139      **/
140     @JsonProperty("name")
141     @ApiModelProperty(value = "Name of the related party")
142     public String getName() {
143         return name;
144     }
145
146     public void setName(String name) {
147         this.name = name;
148     }
149
150     public RelatedParty referredType(String referredType) {
151         this.referredType = referredType;
152         return this;
153     }
154
155     /**
156      * @return referredType
157      **/
158     @JsonProperty("@referredType")
159     @ApiModelProperty(value = "")
160     public String getReferredType() {
161         return referredType;
162     }
163
164     public void setReferredType(String referredType) {
165         this.referredType = referredType;
166     }
167
168
169     @Override
170     public boolean equals(java.lang.Object o) {
171         if (this == o) {
172             return true;
173         }
174         if (o == null || getClass() != o.getClass()) {
175             return false;
176         }
177         RelatedParty relatedParty = (RelatedParty) o;
178         return Objects.equals(this.id, relatedParty.id) && Objects.equals(this.href, relatedParty.href)
179                 && Objects.equals(this.role, relatedParty.role) && Objects.equals(this.name, relatedParty.name)
180                 && Objects.equals(this.referredType, relatedParty.referredType);
181     }
182
183     @Override
184     public int hashCode() {
185         return Objects.hash(id, href, role, name, referredType);
186     }
187
188
189     @Override
190     public String toString() {
191         StringBuilder sb = new StringBuilder();
192         sb.append("class RelatedParty {\n");
193
194         sb.append("    id: ").append(toIndentedString(id)).append("\n");
195         sb.append("    href: ").append(toIndentedString(href)).append("\n");
196         sb.append("    role: ").append(toIndentedString(role)).append("\n");
197         sb.append("    name: ").append(toIndentedString(name)).append("\n");
198         sb.append("    referredType: ").append(toIndentedString(referredType)).append("\n");
199         sb.append("}");
200         return sb.toString();
201     }
202
203     /**
204      * Convert the given object to string with each line indented by 4 spaces (except the first
205      * line).
206      */
207     private String toIndentedString(java.lang.Object o) {
208         if (o == null) {
209             return "null";
210         }
211         return o.toString().replace("\n", "\n    ");
212     }
213 }
214