Format Java code with respect to ONAP Code Style
[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 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.constraints.NotNull;
43 import java.util.Objects;
44 import javax.validation.constraints.Pattern;
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(
51         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(
73             required = true,
74             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")
75     @NotNull(message = "RelationshipType type cannot be null")
76     public RelationshipType getType() {
77         return type;
78     }
79
80     public void setType(RelationshipType type) {
81         this.type = type;
82     }
83
84     public OrderItemRelationship id(String id) {
85         this.id = id;
86         return this;
87     }
88
89     /**
90      * Unique identifier of an order item
91      *
92      * @return id
93      **/
94     @JsonProperty("id")
95     @ApiModelProperty(required = true, value = "Unique identifier of an order item")
96     @NotNull(message = "RelationshipType id cannot be null")
97     @Pattern(regexp = "^(?!\\s*$).+", message = "RelationshipType id  cannot be empty")
98     public String getId() {
99         return id;
100     }
101
102     public void setId(String id) {
103         this.id = id;
104     }
105
106     @Override
107     public boolean equals(java.lang.Object o) {
108         if (this == o) {
109             return true;
110         }
111         if (o == null || getClass() != o.getClass()) {
112             return false;
113         }
114         OrderItemRelationship orderItemRelationship = (OrderItemRelationship) o;
115         return Objects.equals(this.type, orderItemRelationship.type)
116                 && Objects.equals(this.id, orderItemRelationship.id);
117     }
118
119     @Override
120     public int hashCode() {
121         return Objects.hash(type, id);
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 }