Remove 'All rights reserved.' on apache 2 license
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / Note.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.JsonFormat;
41 import com.fasterxml.jackson.annotation.JsonProperty;
42 import io.swagger.annotations.ApiModel;
43 import io.swagger.annotations.ApiModelProperty;
44 import java.util.Date;
45 import java.util.Objects;
46
47 /**
48  * Extra-information about the order (e.g. useful to add extra delivery information that could be
49  * useful for a human process
50  */
51 @ApiModel(
52         description = "Extra-information about the order (e.g. useful to add extra delivery information that could be useful for a human process")
53 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
54         date = "2018-02-19T14:00:30.767Z")
55 public class Note {
56     @JsonProperty("date")
57     private Date date = null;
58
59     @JsonProperty("author")
60     private String author = null;
61
62     @JsonProperty("text")
63     private String text = null;
64
65     public Note date(Date date) {
66         this.date = date;
67         return this;
68     }
69
70     /**
71      * Date of the note
72      *
73      * @return date
74      **/
75     @JsonProperty("date")
76     @ApiModelProperty(value = "Date of the note")
77     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
78     public Date getDate() {
79         return date;
80     }
81
82     public void setDate(Date date) {
83         this.date = date;
84     }
85
86     public Note author(String author) {
87         this.author = author;
88         return this;
89     }
90
91     /**
92      * Author of the note
93      *
94      * @return author
95      **/
96     @JsonProperty("author")
97     @ApiModelProperty(value = "Author of the note")
98     public String getAuthor() {
99         return author;
100     }
101
102     public void setAuthor(String author) {
103         this.author = author;
104     }
105
106     public Note text(String text) {
107         this.text = text;
108         return this;
109     }
110
111     /**
112      * Text of the note
113      *
114      * @return text
115      **/
116     @JsonProperty("text")
117     @ApiModelProperty(value = "Text of the note")
118     public String getText() {
119         return text;
120     }
121
122     public void setText(String text) {
123         this.text = text;
124     }
125
126
127     @Override
128     public boolean equals(java.lang.Object o) {
129         if (this == o) {
130             return true;
131         }
132         if (o == null || getClass() != o.getClass()) {
133             return false;
134         }
135         Note note = (Note) o;
136         return Objects.equals(this.date, note.date) && Objects.equals(this.author, note.author)
137                 && Objects.equals(this.text, note.text);
138     }
139
140     @Override
141     public int hashCode() {
142         return Objects.hash(date, author, text);
143     }
144
145
146     @Override
147     public String toString() {
148         StringBuilder sb = new StringBuilder();
149         sb.append("class Note {\n");
150
151         sb.append("    date: ").append(toIndentedString(date)).append("\n");
152         sb.append("    author: ").append(toIndentedString(author)).append("\n");
153         sb.append("    text: ").append(toIndentedString(text)).append("\n");
154         sb.append("}");
155         return sb.toString();
156     }
157
158     /**
159      * Convert the given object to string with each line indented by 4 spaces (except the first
160      * line).
161      */
162     private String toIndentedString(java.lang.Object o) {
163         if (o == null) {
164             return "null";
165         }
166         return o.toString().replace("\n", "\n    ");
167     }
168 }
169