42bdf9e460d4ec6deb95982bf610d8c35c2ee135
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / TargetServiceSchema.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 import javax.validation.constraints.Pattern;
46
47 /**
48  *
49  */
50 @ApiModel(description = "")
51 @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
52         date = "2018-02-19T14:00:30.767Z")
53 public class TargetServiceSchema {
54     @JsonProperty("@type")
55     private String type = null;
56
57     @JsonProperty("@schemaLocation")
58     private String schemaLocation = null;
59
60     public TargetServiceSchema type(String type) {
61         this.type = type;
62         return this;
63     }
64
65     /**
66      * @return type
67      **/
68     @JsonProperty("@type")
69     @ApiModelProperty(required = true, value = "")
70     @NotNull(message = "TargetServiceSchema @type cannot be null")
71     @Pattern(regexp="^(?!\\s*$).+", message="TargetServiceSchema @type cannot be empty")
72     public String getType() {
73         return type;
74     }
75
76     public void setType(String type) {
77         this.type = type;
78     }
79
80     public TargetServiceSchema schemaLocation(String schemaLocation) {
81         this.schemaLocation = schemaLocation;
82         return this;
83     }
84
85     /**
86      * @return schemaLocation
87      **/
88     @JsonProperty("@schemaLocation")
89     @ApiModelProperty(required = true, value = "")
90     @NotNull(message = "TargetServiceSchema @schemaLocation cannot be null")
91     @Pattern(regexp="^(?!\\s*$).+", message="TargetServiceSchema @schemaLocation cannot be empty")
92     public String getSchemaLocation() {
93         return schemaLocation;
94     }
95
96     public void setSchemaLocation(String schemaLocation) {
97         this.schemaLocation = schemaLocation;
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         TargetServiceSchema targetServiceSchema = (TargetServiceSchema) o;
110         return Objects.equals(this.type, targetServiceSchema.type)
111                 && Objects.equals(this.schemaLocation, targetServiceSchema.schemaLocation);
112     }
113
114     @Override
115     public int hashCode() {
116         return Objects.hash(type, schemaLocation);
117     }
118
119
120     @Override
121     public String toString() {
122         StringBuilder sb = new StringBuilder();
123         sb.append("class TargetServiceSchema {\n");
124
125         sb.append("    type: ").append(toIndentedString(type)).append("\n");
126         sb.append("    schemaLocation: ").append(toIndentedString(schemaLocation)).append("\n");
127         sb.append("}");
128         return sb.toString();
129     }
130
131     /**
132      * Convert the given object to string with each line indented by 4 spaces (except the first
133      * line).
134      */
135     private String toIndentedString(java.lang.Object o) {
136         if (o == null) {
137             return "null";
138         }
139         return o.toString().replace("\n", "\n    ");
140     }
141 }
142