ba9716294ef1a053350ead1dc0d6807eecbb5223
[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 import javax.validation.constraints.Pattern;
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(message = "RelatedParty Id cannot be null")
82     @Pattern(regexp="^(?!\\s*$).+", message="RelatedParty Id cannot be empty")
83     public String getId() {
84         return id;
85     }
86
87     public void setId(String id) {
88         this.id = id;
89     }
90
91     public RelatedParty href(String href) {
92         this.href = href;
93         return this;
94     }
95
96     /**
97      * An hyperlink to the party
98      *
99      * @return href
100      **/
101     @JsonProperty("href")
102     @ApiModelProperty(value = "An hyperlink to the party")
103     public String getHref() {
104         return href;
105     }
106
107     public void setHref(String href) {
108         this.href = href;
109     }
110
111     public RelatedParty role(String role) {
112         this.role = role;
113         return this;
114     }
115
116     /**
117      * The role of the related party (e.g. Owner, requester, fullfiller etc)
118      *
119      * @return role
120      **/
121     @JsonProperty("role")
122     @ApiModelProperty(required = true, value = "The role of the related party (e.g. Owner, requester, fullfiller etc)")
123     @NotNull(message = "RelatedParty role cannot be null")
124     @Pattern(regexp="^(?!\\s*$).+", message="RelatedParty role cannot be empty")
125     public String getRole() {
126         return role;
127     }
128
129     public void setRole(String role) {
130         this.role = role;
131     }
132
133     public RelatedParty name(String name) {
134         this.name = name;
135         return this;
136     }
137
138     /**
139      * Name of the related party
140      *
141      * @return name
142      **/
143     @JsonProperty("name")
144     @ApiModelProperty(value = "Name of the related party")
145     public String getName() {
146         return name;
147     }
148
149     public void setName(String name) {
150         this.name = name;
151     }
152
153     public RelatedParty referredType(String referredType) {
154         this.referredType = referredType;
155         return this;
156     }
157
158     /**
159      * @return referredType
160      **/
161     @JsonProperty("@referredType")
162     @ApiModelProperty(value = "")
163     public String getReferredType() {
164         return referredType;
165     }
166
167     public void setReferredType(String referredType) {
168         this.referredType = referredType;
169     }
170
171
172     @Override
173     public boolean equals(java.lang.Object o) {
174         if (this == o) {
175             return true;
176         }
177         if (o == null || getClass() != o.getClass()) {
178             return false;
179         }
180         RelatedParty relatedParty = (RelatedParty) o;
181         return Objects.equals(this.id, relatedParty.id) && Objects.equals(this.href, relatedParty.href)
182                 && Objects.equals(this.role, relatedParty.role) && Objects.equals(this.name, relatedParty.name)
183                 && Objects.equals(this.referredType, relatedParty.referredType);
184     }
185
186     @Override
187     public int hashCode() {
188         return Objects.hash(id, href, role, name, referredType);
189     }
190
191
192     @Override
193     public String toString() {
194         StringBuilder sb = new StringBuilder();
195         sb.append("class RelatedParty {\n");
196
197         sb.append("    id: ").append(toIndentedString(id)).append("\n");
198         sb.append("    href: ").append(toIndentedString(href)).append("\n");
199         sb.append("    role: ").append(toIndentedString(role)).append("\n");
200         sb.append("    name: ").append(toIndentedString(name)).append("\n");
201         sb.append("    referredType: ").append(toIndentedString(referredType)).append("\n");
202         sb.append("}");
203         return sb.toString();
204     }
205
206     /**
207      * Convert the given object to string with each line indented by 4 spaces (except the first
208      * line).
209      */
210     private String toIndentedString(java.lang.Object o) {
211         if (o == null) {
212             return "null";
213         }
214         return o.toString().replace("\n", "\n    ");
215     }
216 }
217