AT&T 1712 and 1802 release code
[so.git] / cloudify-client / src / main / java / org / openecomp / mso / cloudify / v3 / model / UpdateNodeInstanceParams.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.cloudify.v3.model;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 import java.io.Serializable;
26 import java.util.Map;
27
28 public class UpdateNodeInstanceParams implements Serializable {
29
30         private static final long serialVersionUID = 1L;
31         
32     @JsonProperty("state")
33     private String state;
34
35     @JsonProperty("version")
36     private String version;
37
38     @JsonProperty("runtime_properties")
39     private Map<String, Object> runtimeProperties;
40
41
42     public String getState() {
43                 return state;
44         }
45
46         public void setState(String state) {
47                 this.state = state;
48         }
49
50         public String getVersion() {
51                 return version;
52         }
53
54         public void setVersion(String version) {
55                 this.version = version;
56         }
57
58         public Map<String, Object> getRuntimeProperties() {
59                 return runtimeProperties;
60         }
61
62         public void setRuntimeProperties(Map<String, Object> runtimeProperties) {
63                 this.runtimeProperties = runtimeProperties;
64         }
65
66
67         @Override
68     public String toString() {
69         return "UpdateNodeInstanceParams{" +
70                 "state='" + state + '\'' +
71                 "version='" + version + '\'' +
72                 ", runtimeProperties=" + runtimeProperties +
73                 '}';
74     }
75
76 }