View Javadoc
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.swap;
18  
19  public class SwapCNamesContext {
20  
21    /**
22     * Source Environment Name
23     */
24    String sourceEnvironmentName;
25  
26    /**
27     * Source Environment Id
28     */
29    String sourceEnvironmentId;
30  
31    /**
32     * Destination Environment Name
33     */
34    String destinationEnvironmentName;
35  
36    /**
37     * Destination Environment Id
38     */
39    String destinationEnvironmentId;
40  
41    /**
42     * @return the sourceEnvironmentName
43     */
44    public String getSourceEnvironmentName() {
45      return sourceEnvironmentName;
46    }
47  
48    /**
49     * @param sourceEnvironmentName the sourceEnvironmentName to set
50     */
51    public void setSourceEnvironmentName(String sourceEnvironmentName) {
52      this.sourceEnvironmentName = sourceEnvironmentName;
53    }
54  
55    /**
56     * @return the sourceEnvironmentId
57     */
58    public String getSourceEnvironmentId() {
59      return sourceEnvironmentId;
60    }
61  
62    /**
63     * @param sourceEnvironmentId the sourceEnvironmentId to set
64     */
65    public void setSourceEnvironmentId(String sourceEnvironmentId) {
66      this.sourceEnvironmentId = sourceEnvironmentId;
67    }
68  
69    /**
70     * @return the destinationEnvironmentName
71     */
72    public String getDestinationEnvironmentName() {
73      return destinationEnvironmentName;
74    }
75  
76    /**
77     * @param destinationEnvironmentName the destinationEnvironmentName to set
78     */
79    public void setDestinationEnvironmentName(String destinationEnvironmentName) {
80      this.destinationEnvironmentName = destinationEnvironmentName;
81    }
82  
83    /**
84     * @return the destinationEnvironmentId
85     */
86    public String getDestinationEnvironmentId() {
87      return destinationEnvironmentId;
88    }
89  
90    /**
91     * @param destinationEnvironmentId the destinationEnvironmentId to set
92     */
93    public void setDestinationEnvironmentId(String destinationEnvironmentId) {
94      this.destinationEnvironmentId = destinationEnvironmentId;
95    }
96  }