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