1 /*
2 * Copyright (c) 2016 ingenieux Labs
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 package br.com.ingenieux.mojo.beanstalk.cmd.env.terminate;
18
19 public class TerminateEnvironmentContext {
20
21 String environmentId;
22
23 String environmentName;
24
25 boolean terminateResources;
26
27 /**
28 * @return the environmentId
29 */
30 public String getEnvironmentId() {
31 return environmentId;
32 }
33
34 /**
35 * @param environmentId the environmentId to set
36 */
37 public void setEnvironmentId(String environmentId) {
38 this.environmentId = environmentId;
39 }
40
41 /**
42 * @return the environmentName
43 */
44 public String getEnvironmentName() {
45 return environmentName;
46 }
47
48 /**
49 * @param environmentName the environmentName to set
50 */
51 public void setEnvironmentName(String environmentName) {
52 this.environmentName = environmentName;
53 }
54
55 /**
56 * @return the terminateResources
57 */
58 public boolean isTerminateResources() {
59 return terminateResources;
60 }
61
62 /**
63 * @param terminateResources the terminateResources to set
64 */
65 public void setTerminateResources(boolean terminateResources) {
66 this.terminateResources = terminateResources;
67 }
68 }