2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
 
   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=========================================================
 
  22 package org.openecomp.appc.adapter.openstack.heat.model;
 
  24 import javax.annotation.Generated;
 
  25 import javax.validation.Valid;
 
  26 import com.fasterxml.jackson.annotation.JsonInclude;
 
  27 import com.fasterxml.jackson.annotation.JsonProperty;
 
  28 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
  29 import org.apache.commons.lang.builder.ToStringBuilder;
 
  31 @JsonInclude(JsonInclude.Include.NON_NULL)
 
  32 @Generated("org.jsonschema2pojo")
 
  36     "stack_user_project_id",
 
  46     @JsonProperty("status")
 
  47     private String status;
 
  50     @JsonProperty("stack_user_project_id")
 
  51     private String stackUserProjectId;
 
  52     @JsonProperty("environment")
 
  54     private Environment environment;
 
  55     @JsonProperty("template")
 
  57     private Template template;
 
  58     @JsonProperty("action")
 
  59     private String action;
 
  60     @JsonProperty("project_id")
 
  61     private String projectId;
 
  64     @JsonProperty("resources")
 
  66     private Resources__ resources;
 
  73     @JsonProperty("status")
 
  74     public String getStatus() {
 
  83     @JsonProperty("status")
 
  84     public void setStatus(String status) {
 
  94     public String getName() {
 
 103     @JsonProperty("name")
 
 104     public void setName(String name) {
 
 111      *     The stackUserProjectId
 
 113     @JsonProperty("stack_user_project_id")
 
 114     public String getStackUserProjectId() {
 
 115         return stackUserProjectId;
 
 120      * @param stackUserProjectId
 
 121      *     The stack_user_project_id
 
 123     @JsonProperty("stack_user_project_id")
 
 124     public void setStackUserProjectId(String stackUserProjectId) {
 
 125         this.stackUserProjectId = stackUserProjectId;
 
 133     @JsonProperty("environment")
 
 134     public Environment getEnvironment() {
 
 143     @JsonProperty("environment")
 
 144     public void setEnvironment(Environment environment) {
 
 145         this.environment = environment;
 
 153     @JsonProperty("template")
 
 154     public Template getTemplate() {
 
 163     @JsonProperty("template")
 
 164     public void setTemplate(Template template) {
 
 165         this.template = template;
 
 173     @JsonProperty("action")
 
 174     public String getAction() {
 
 183     @JsonProperty("action")
 
 184     public void setAction(String action) {
 
 185         this.action = action;
 
 193     @JsonProperty("project_id")
 
 194     public String getProjectId() {
 
 203     @JsonProperty("project_id")
 
 204     public void setProjectId(String projectId) {
 
 205         this.projectId = projectId;
 
 214     public String getId() {
 
 224     public void setId(String id) {
 
 233     @JsonProperty("resources")
 
 234     public Resources__ getResources() {
 
 243     @JsonProperty("resources")
 
 244     public void setResources(Resources__ resources) {
 
 245         this.resources = resources;
 
 249     public String toString() {
 
 250         return ToStringBuilder.reflectionToString(this);