Add Apache license header per file
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / AppointmentRef.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  * Used to precise that an appointment was set-up with a related party for this order item
49  */
50 @ApiModel(description = "Used to precise that an appointment was set-up with a related party for this order item")
51 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
52         date = "2018-02-19T14:00:30.767Z")
53 public class AppointmentRef {
54     @JsonProperty("id")
55     private String id = null;
56
57     @JsonProperty("href")
58     private String href = null;
59
60     @JsonProperty("@referredType")
61     private String referredType = null;
62
63     public AppointmentRef id(String id) {
64         this.id = id;
65         return this;
66     }
67
68     /**
69      * Unique identifier of the appointment
70      *
71      * @return id
72      **/
73     @JsonProperty("id")
74     @ApiModelProperty(required = true, value = "Unique identifier of the appointment")
75     @NotNull
76     public String getId() {
77         return id;
78     }
79
80     public void setId(String id) {
81         this.id = id;
82     }
83
84     public AppointmentRef href(String href) {
85         this.href = href;
86         return this;
87     }
88
89     /**
90      * Reference of the appointmenrt
91      *
92      * @return href
93      **/
94     @JsonProperty("href")
95     @ApiModelProperty(required = true, value = "Reference of the appointmenrt")
96     @NotNull
97     public String getHref() {
98         return href;
99     }
100
101     public void setHref(String href) {
102         this.href = href;
103     }
104
105     public AppointmentRef referredType(String referredType) {
106         this.referredType = referredType;
107         return this;
108     }
109
110     /**
111      * @return referredType
112      **/
113     @JsonProperty("@referredType")
114     @ApiModelProperty(value = "")
115     public String getReferredType() {
116         return referredType;
117     }
118
119     public void setReferredType(String referredType) {
120         this.referredType = referredType;
121     }
122
123
124     @Override
125     public boolean equals(java.lang.Object o) {
126         if (this == o) {
127             return true;
128         }
129         if (o == null || getClass() != o.getClass()) {
130             return false;
131         }
132         AppointmentRef appointmentRef = (AppointmentRef) o;
133         return Objects.equals(this.id, appointmentRef.id) && Objects.equals(this.href, appointmentRef.href)
134                 && Objects.equals(this.referredType, appointmentRef.referredType);
135     }
136
137     @Override
138     public int hashCode() {
139         return Objects.hash(id, href, referredType);
140     }
141
142
143     @Override
144     public String toString() {
145         StringBuilder sb = new StringBuilder();
146         sb.append("class AppointmentRef {\n");
147
148         sb.append("    id: ").append(toIndentedString(id)).append("\n");
149         sb.append("    href: ").append(toIndentedString(href)).append("\n");
150         sb.append("    referredType: ").append(toIndentedString(referredType)).append("\n");
151         sb.append("}");
152         return sb.toString();
153     }
154
155     /**
156      * Convert the given object to string with each line indented by 4 spaces (except the first
157      * line).
158      */
159     private String toIndentedString(java.lang.Object o) {
160         if (o == null) {
161             return "null";
162         }
163         return o.toString().replace("\n", "\n    ");
164     }
165 }
166