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;
18  
19  import com.amazonaws.services.elasticbeanstalk.model.ConfigurationOptionSetting;
20  
21  /**
22   * Represents a Configuration Template
23   *
24   * @author Aldrin Leal
25   */
26  public class ConfigurationTemplate {
27  
28    String id;
29    ConfigurationOptionSetting[] optionSettings;
30    String solutionStack;
31  
32    /**
33     * @return the id
34     */
35    public String getId() {
36      return id;
37    }
38  
39    /**
40     * @param id the id to set
41     */
42    public void setId(String id) {
43      this.id = id;
44    }
45  
46    /**
47     * @return the optionSettings
48     */
49    public ConfigurationOptionSetting[] getOptionSettings() {
50      return optionSettings;
51    }
52  
53    /**
54     * @param optionSettings the optionSettings to set
55     */
56    public void setOptionSettings(ConfigurationOptionSetting[] optionSettings) {
57      this.optionSettings = optionSettings;
58    }
59  
60    /**
61     * @return the solutionStack
62     */
63    public String getSolutionStack() {
64      return solutionStack;
65    }
66  
67    /**
68     * @param solutionStack the solutionStack to set
69     */
70    public void setSolutionStack(String solutionStack) {
71      this.solutionStack = solutionStack;
72    }
73  }