a6d77d7823ed0bf39113dd6077f1dd7071473e23
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / OrderRelationship.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.Valid;
44 import javax.validation.constraints.NotNull;
45 import java.util.Objects;
46 import javax.validation.constraints.Pattern;
47
48 /**
49  * Linked order to the one containing this attribute
50  */
51 @ApiModel(description = "Linked order to the one containing this attribute")
52 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
53         date = "2018-02-19T14:00:30.767Z")
54 public class OrderRelationship {
55     @JsonProperty("type")
56     private String type = null;
57
58     @JsonProperty("id")
59     private String id = null;
60
61     @JsonProperty("href")
62     private String href = null;
63
64     @JsonProperty("@referredType")
65     private String referredType = null;
66
67     public OrderRelationship type(String type) {
68         this.type = type;
69         return this;
70     }
71
72     /**
73      * The type of related order, can be : “dependency” if the order needs to be “not started” until
74      * another order item is complete (a service order in this case) or “cross-ref” to keep track of
75      * the source order (a productOrder)
76      *
77      * @return type
78      **/
79     @JsonProperty("type")
80     @ApiModelProperty(
81             value = "The type of related order, can be : “dependency” if the order needs to be “not started” until another order item is complete (a service order in this case) or “cross-ref” to keep track of the source order (a productOrder)")
82     public String getType() {
83         return type;
84     }
85
86     public void setType(String type) {
87         this.type = type;
88     }
89
90     public OrderRelationship id(String id) {
91         this.id = id;
92         return this;
93     }
94
95     /**
96      * The id of the related order
97      *
98      * @return id
99      **/
100     @JsonProperty("id")
101     @ApiModelProperty(required = true, value = "The id of the related order")
102     @NotNull(message = "OrderRelationship id cannot be null")
103     @Pattern(regexp="^(?!\\s*$).+", message="OrderRelationship id cannot be empty")
104     public String getId() {
105         return id;
106     }
107
108     public void setId(String id) {
109         this.id = id;
110     }
111
112     public OrderRelationship href(String href) {
113         this.href = href;
114         return this;
115     }
116
117     /**
118      * A hyperlink to the related order
119      *
120      * @return href
121      **/
122     @JsonProperty("href")
123     @ApiModelProperty(value = "A hyperlink to the related order")
124     public String getHref() {
125         return href;
126     }
127
128     public void setHref(String href) {
129         this.href = href;
130     }
131
132     public OrderRelationship referredType(String referredType) {
133         this.referredType = referredType;
134         return this;
135     }
136
137     /**
138      * @return referredType
139      **/
140     @JsonProperty("@referredType")
141     @ApiModelProperty(value = "")
142     public String getReferredType() {
143         return referredType;
144     }
145
146     public void setReferredType(String referredType) {
147         this.referredType = referredType;
148     }
149
150
151     @Override
152     public boolean equals(java.lang.Object o) {
153         if (this == o) {
154             return true;
155         }
156         if (o == null || getClass() != o.getClass()) {
157             return false;
158         }
159         OrderRelationship orderRelationship = (OrderRelationship) o;
160         return Objects.equals(this.type, orderRelationship.type) && Objects.equals(this.id, orderRelationship.id)
161                 && Objects.equals(this.href, orderRelationship.href)
162                 && Objects.equals(this.referredType, orderRelationship.referredType);
163     }
164
165     @Override
166     public int hashCode() {
167         return Objects.hash(type, id, href, referredType);
168     }
169
170
171     @Override
172     public String toString() {
173         StringBuilder sb = new StringBuilder();
174         sb.append("class OrderRelationship {\n");
175
176         sb.append("    type: ").append(toIndentedString(type)).append("\n");
177         sb.append("    id: ").append(toIndentedString(id)).append("\n");
178         sb.append("    href: ").append(toIndentedString(href)).append("\n");
179         sb.append("    referredType: ").append(toIndentedString(referredType)).append("\n");
180         sb.append("}");
181         return sb.toString();
182     }
183
184     /**
185      * Convert the given object to string with each line indented by 4 spaces (except the first
186      * line).
187      */
188     private String toIndentedString(java.lang.Object o) {
189         if (o == null) {
190             return "null";
191         }
192         return o.toString().replace("\n", "\n    ");
193     }
194 }
195