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