Format Java code with respect to ONAP Code Style
[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 package org.onap.nbi.apis.serviceorder.model;
38
39 import com.fasterxml.jackson.annotation.JsonProperty;
40 import io.swagger.annotations.ApiModel;
41 import io.swagger.annotations.ApiModelProperty;
42 import javax.validation.Valid;
43 import javax.validation.constraints.NotNull;
44 import java.util.Objects;
45 import javax.validation.constraints.Pattern;
46
47 /**
48  * Linked order to the one containing this attribute
49  */
50 @ApiModel(description = "Linked order to the one containing this attribute")
51 @javax.annotation.Generated(
52         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     @Override
151     public boolean equals(java.lang.Object o) {
152         if (this == o) {
153             return true;
154         }
155         if (o == null || getClass() != o.getClass()) {
156             return false;
157         }
158         OrderRelationship orderRelationship = (OrderRelationship) o;
159         return Objects.equals(this.type, orderRelationship.type) && Objects.equals(this.id, orderRelationship.id)
160                 && Objects.equals(this.href, orderRelationship.href)
161                 && Objects.equals(this.referredType, orderRelationship.referredType);
162     }
163
164     @Override
165     public int hashCode() {
166         return Objects.hash(type, id, href, referredType);
167     }
168
169     @Override
170     public String toString() {
171         StringBuilder sb = new StringBuilder();
172         sb.append("class OrderRelationship {\n");
173
174         sb.append("    type: ").append(toIndentedString(type)).append("\n");
175         sb.append("    id: ").append(toIndentedString(id)).append("\n");
176         sb.append("    href: ").append(toIndentedString(href)).append("\n");
177         sb.append("    referredType: ").append(toIndentedString(referredType)).append("\n");
178         sb.append("}");
179         return sb.toString();
180     }
181
182     /**
183      * Convert the given object to string with each line indented by 4 spaces (except the first
184      * line).
185      */
186     private String toIndentedString(java.lang.Object o) {
187         if (o == null) {
188             return "null";
189         }
190         return o.toString().replace("\n", "\n    ");
191     }
192 }