Remove 'All rights reserved.' on apache 2 license
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / OrderItemRelationship.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 item to the one containing this attribute
48  */
49 @ApiModel(description = "Linked order item 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 OrderItemRelationship {
53     @JsonProperty("type")
54     private RelationshipType type = null;
55
56     @JsonProperty("id")
57     private String id = null;
58
59     public OrderItemRelationship type(RelationshipType type) {
60         this.type = type;
61         return this;
62     }
63
64     /**
65      * The type of related order item, can be : dependancy if the order item needs to be “not
66      * started” until another order item is complete
67      *
68      * @return type
69      **/
70     @JsonProperty("type")
71     @ApiModelProperty(required = true,
72             value = "The type of related order item, can be : dependancy if the order item needs to be “not started” until another order item is complete")
73     @NotNull
74     public RelationshipType getType() {
75         return type;
76     }
77
78     public void setType(RelationshipType type) {
79         this.type = type;
80     }
81
82     public OrderItemRelationship id(String id) {
83         this.id = id;
84         return this;
85     }
86
87     /**
88      * Unique identifier of an order item
89      *
90      * @return id
91      **/
92     @JsonProperty("id")
93     @ApiModelProperty(required = true, value = "Unique identifier of an order item")
94     @NotNull
95     public String getId() {
96         return id;
97     }
98
99     public void setId(String id) {
100         this.id = id;
101     }
102
103
104     @Override
105     public boolean equals(java.lang.Object o) {
106         if (this == o) {
107             return true;
108         }
109         if (o == null || getClass() != o.getClass()) {
110             return false;
111         }
112         OrderItemRelationship orderItemRelationship = (OrderItemRelationship) o;
113         return Objects.equals(this.type, orderItemRelationship.type)
114                 && Objects.equals(this.id, orderItemRelationship.id);
115     }
116
117     @Override
118     public int hashCode() {
119         return Objects.hash(type, id);
120     }
121
122
123     @Override
124     public String toString() {
125         StringBuilder sb = new StringBuilder();
126         sb.append("class OrderItemRelationship {\n");
127
128         sb.append("    type: ").append(toIndentedString(type)).append("\n");
129         sb.append("    id: ").append(toIndentedString(id)).append("\n");
130         sb.append("}");
131         return sb.toString();
132     }
133
134     /**
135      * Convert the given object to string with each line indented by 4 spaces (except the first
136      * line).
137      */
138     private String toIndentedString(java.lang.Object o) {
139         if (o == null) {
140             return "null";
141         }
142         return o.toString().replace("\n", "\n    ");
143     }
144 }
145