5e73de8bee14aef68cb1aecdeb12bb9ef8395028
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / OrderRelationship.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  * Linked order to the one containing this attribute
49  */
50 @ApiModel(description = "Linked order to the one containing this attribute")
51 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
52         date = "2018-02-19T14:00:30.767Z")
53 public class OrderRelationship {
54     @JsonProperty("type")
55     private String type = null;
56
57     @JsonProperty("id")
58     private String id = null;
59
60     @JsonProperty("href")
61     private String href = null;
62
63     @JsonProperty("@referredType")
64     private String referredType = null;
65
66     public OrderRelationship type(String type) {
67         this.type = type;
68         return this;
69     }
70
71     /**
72      * The type of related order, can be : “dependency” if the order needs to be “not started” until
73      * another order item is complete (a service order in this case) or “cross-ref” to keep track of
74      * the source order (a productOrder)
75      *
76      * @return type
77      **/
78     @JsonProperty("type")
79     @ApiModelProperty(
80             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)")
81     public String getType() {
82         return type;
83     }
84
85     public void setType(String type) {
86         this.type = type;
87     }
88
89     public OrderRelationship id(String id) {
90         this.id = id;
91         return this;
92     }
93
94     /**
95      * The id of the related order
96      *
97      * @return id
98      **/
99     @JsonProperty("id")
100     @ApiModelProperty(required = true, value = "The id of the related order")
101     @NotNull
102     public String getId() {
103         return id;
104     }
105
106     public void setId(String id) {
107         this.id = id;
108     }
109
110     public OrderRelationship href(String href) {
111         this.href = href;
112         return this;
113     }
114
115     /**
116      * A hyperlink to the related order
117      *
118      * @return href
119      **/
120     @JsonProperty("href")
121     @ApiModelProperty(value = "A hyperlink to the related order")
122     public String getHref() {
123         return href;
124     }
125
126     public void setHref(String href) {
127         this.href = href;
128     }
129
130     public OrderRelationship referredType(String referredType) {
131         this.referredType = referredType;
132         return this;
133     }
134
135     /**
136      * @return referredType
137      **/
138     @JsonProperty("@referredType")
139     @ApiModelProperty(value = "")
140     public String getReferredType() {
141         return referredType;
142     }
143
144     public void setReferredType(String referredType) {
145         this.referredType = referredType;
146     }
147
148
149     @Override
150     public boolean equals(java.lang.Object o) {
151         if (this == o) {
152             return true;
153         }
154         if (o == null || getClass() != o.getClass()) {
155             return false;
156         }
157         OrderRelationship orderRelationship = (OrderRelationship) o;
158         return Objects.equals(this.type, orderRelationship.type) && Objects.equals(this.id, orderRelationship.id)
159                 && Objects.equals(this.href, orderRelationship.href)
160                 && Objects.equals(this.referredType, orderRelationship.referredType);
161     }
162
163     @Override
164     public int hashCode() {
165         return Objects.hash(type, id, href, referredType);
166     }
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 }
193