Last change
on this file since 61 was
7,
checked in by phdmakk, 14 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
770 bytes
|
Line | |
---|
1 | package org.etsi.common.configuration; |
---|
2 | |
---|
3 | import java.util.ArrayList; |
---|
4 | |
---|
5 | public abstract class ToolConfiguration { |
---|
6 | |
---|
7 | private ArrayList<ConfigurationProfile> ConfigurationProfiles; |
---|
8 | private String defaultConfigurationProfile; |
---|
9 | |
---|
10 | public ToolConfiguration() { |
---|
11 | super(); |
---|
12 | } |
---|
13 | |
---|
14 | public ArrayList<ConfigurationProfile> getConfigurationProfiles() { |
---|
15 | return ConfigurationProfiles; |
---|
16 | } |
---|
17 | |
---|
18 | public void setConfigurationProfiles(ArrayList<ConfigurationProfile> configurationProfiles) { |
---|
19 | this.ConfigurationProfiles = configurationProfiles; |
---|
20 | } |
---|
21 | |
---|
22 | public String getDefaultConfigurationProfile() { |
---|
23 | return defaultConfigurationProfile; |
---|
24 | } |
---|
25 | |
---|
26 | public void setDefaultConfigurationProfile(String defaultConfigurationProfile) { |
---|
27 | this.defaultConfigurationProfile = defaultConfigurationProfile; |
---|
28 | } |
---|
29 | |
---|
30 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.