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