2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * Copyright (C) 2017 Amdocs
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 package org.openecomp.appc.adapter.openstack.heat.model;
25 import javax.annotation.Generated;
26 import javax.validation.Valid;
27 import com.fasterxml.jackson.annotation.JsonInclude;
28 import com.fasterxml.jackson.annotation.JsonProperty;
29 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
30 import org.apache.commons.lang.builder.ToStringBuilder;
32 @JsonInclude(JsonInclude.Include.NON_NULL)
33 @Generated("org.jsonschema2pojo")
37 "stack_user_project_id",
47 @JsonProperty("status")
48 private String status;
51 @JsonProperty("stack_user_project_id")
52 private String stackUserProjectId;
53 @JsonProperty("environment")
55 private Environment environment;
56 @JsonProperty("template")
58 private Template template;
59 @JsonProperty("action")
60 private String action;
61 @JsonProperty("project_id")
62 private String projectId;
65 @JsonProperty("resources")
67 private Resources__ resources;
74 @JsonProperty("status")
75 public String getStatus() {
84 @JsonProperty("status")
85 public void setStatus(String status) {
95 public String getName() {
104 @JsonProperty("name")
105 public void setName(String name) {
112 * The stackUserProjectId
114 @JsonProperty("stack_user_project_id")
115 public String getStackUserProjectId() {
116 return stackUserProjectId;
121 * @param stackUserProjectId
122 * The stack_user_project_id
124 @JsonProperty("stack_user_project_id")
125 public void setStackUserProjectId(String stackUserProjectId) {
126 this.stackUserProjectId = stackUserProjectId;
134 @JsonProperty("environment")
135 public Environment getEnvironment() {
144 @JsonProperty("environment")
145 public void setEnvironment(Environment environment) {
146 this.environment = environment;
154 @JsonProperty("template")
155 public Template getTemplate() {
164 @JsonProperty("template")
165 public void setTemplate(Template template) {
166 this.template = template;
174 @JsonProperty("action")
175 public String getAction() {
184 @JsonProperty("action")
185 public void setAction(String action) {
186 this.action = action;
194 @JsonProperty("project_id")
195 public String getProjectId() {
204 @JsonProperty("project_id")
205 public void setProjectId(String projectId) {
206 this.projectId = projectId;
215 public String getId() {
225 public void setId(String id) {
234 @JsonProperty("resources")
235 public Resources__ getResources() {
244 @JsonProperty("resources")
245 public void setResources(Resources__ resources) {
246 this.resources = resources;
250 public String toString() {
251 return ToStringBuilder.reflectionToString(this);