Moving all files to root directory
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / main / java / org / openecomp / appc / adapter / openstack / heat / model / SnapshotRestoreResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.adapter.openstack.heat.model;
23
24 import javax.annotation.Generated;
25 import com.fasterxml.jackson.annotation.JsonInclude;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
28 import org.apache.commons.lang.builder.ToStringBuilder;
29
30 @JsonInclude(JsonInclude.Include.NON_NULL)
31 @Generated("org.jsonschema2pojo")
32 @JsonPropertyOrder({
33     "code",
34     "message",
35     "title"
36 })
37 public class SnapshotRestoreResponse {
38
39     @JsonProperty("code")
40     private String code;
41     @JsonProperty("message")
42     private String message;
43     @JsonProperty("title")
44     private String title;
45
46     /**
47      * 
48      * @return
49      *     The code
50      */
51     @JsonProperty("code")
52     public String getCode() {
53         return code;
54     }
55
56     /**
57      * 
58      * @param code
59      *     The code
60      */
61     @JsonProperty("code")
62     public void setCode(String code) {
63         this.code = code;
64     }
65
66     /**
67      * 
68      * @return
69      *     The message
70      */
71     @JsonProperty("message")
72     public String getMessage() {
73         return message;
74     }
75
76     /**
77      * 
78      * @param message
79      *     The message
80      */
81     @JsonProperty("message")
82     public void setMessage(String message) {
83         this.message = message;
84     }
85
86     /**
87      * 
88      * @return
89      *     The title
90      */
91     @JsonProperty("title")
92     public String getTitle() {
93         return title;
94     }
95
96     /**
97      * 
98      * @param title
99      *     The title
100      */
101     @JsonProperty("title")
102     public void setTitle(String title) {
103         this.title = title;
104     }
105
106     @Override
107     public String toString() {
108         return ToStringBuilder.reflectionToString(this);
109     }
110
111 }