Remove 'All rights reserved.' on apache 2 license
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / OrderItemRef.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  * Reference of an order item
48  */
49 @ApiModel(description = "Reference of an order item")
50 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
51         date = "2018-02-19T14:00:30.767Z")
52 public class OrderItemRef {
53     @JsonProperty("id")
54     private String id = null;
55
56     @JsonProperty("href")
57     private String href = null;
58
59     public OrderItemRef id(String id) {
60         this.id = id;
61         return this;
62     }
63
64     /**
65      * Unique identifier of the order irtem
66      *
67      * @return id
68      **/
69     @JsonProperty("id")
70     @ApiModelProperty(required = true, value = "Unique identifier of the order irtem")
71     @NotNull
72     public String getId() {
73         return id;
74     }
75
76     public void setId(String id) {
77         this.id = id;
78     }
79
80     public OrderItemRef href(String href) {
81         this.href = href;
82         return this;
83     }
84
85     /**
86      * Unique reference of the order item
87      *
88      * @return href
89      **/
90     @JsonProperty("href")
91     @ApiModelProperty(value = "Unique reference of the order item")
92     public String getHref() {
93         return href;
94     }
95
96     public void setHref(String href) {
97         this.href = href;
98     }
99
100
101     @Override
102     public boolean equals(java.lang.Object o) {
103         if (this == o) {
104             return true;
105         }
106         if (o == null || getClass() != o.getClass()) {
107             return false;
108         }
109         OrderItemRef orderItemRef = (OrderItemRef) o;
110         return Objects.equals(this.id, orderItemRef.id) && Objects.equals(this.href, orderItemRef.href);
111     }
112
113     @Override
114     public int hashCode() {
115         return Objects.hash(id, href);
116     }
117
118
119     @Override
120     public String toString() {
121         StringBuilder sb = new StringBuilder();
122         sb.append("class OrderItemRef {\n");
123
124         sb.append("    id: ").append(toIndentedString(id)).append("\n");
125         sb.append("    href: ").append(toIndentedString(href)).append("\n");
126         sb.append("}");
127         return sb.toString();
128     }
129
130     /**
131      * Convert the given object to string with each line indented by 4 spaces (except the first
132      * line).
133      */
134     private String toIndentedString(java.lang.Object o) {
135         if (o == null) {
136             return "null";
137         }
138         return o.toString().replace("\n", "\n    ");
139     }
140 }
141