Package zowe.client.sdk.teamconfig.model
Class ConfigContainer
- java.lang.Object
-
- zowe.client.sdk.teamconfig.model.ConfigContainer
-
public class ConfigContainer extends Object
ConfigContainer POJO to act as a container for a parsed Zowe Global Team Configuration file representation- Version:
- 4.0
- Author:
- Frank Giordano
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>getDefaults()Return hashmap of default valuesList<Partition>getPartitions()Return list of partitionsList<Profile>getProfiles()Return list of profilesStringgetSchema()Return schemaBooleanisAutoStore()Return is autoStore specified from reading and parsing Zowe Global Team ConfigurationStringtoString()Return string value representing ConfigContainer object
-
-
-
Constructor Detail
-
ConfigContainer
public ConfigContainer(List<Partition> partitions, String schema, List<Profile> profiles, Map<String,String> defaults, Boolean autoStore)
ConfigContainer constructor- Parameters:
partitions- list of parsed partitions from Zowe Global Team Configurationschema- schema value from Zowe Global Team Configurationprofiles- list of parsed profiles from Zowe Global Team Configurationdefaults- hashmap of defaults values parsed from Zowe Global Team ConfigurationautoStore- autoStore value from Zowe Global Team Configuration
-
-
Method Detail
-
isAutoStore
public Boolean isAutoStore()
Return is autoStore specified from reading and parsing Zowe Global Team Configuration- Returns:
- boolean true or false
-
getDefaults
public Map<String,String> getDefaults()
Return hashmap of default values- Returns:
- default property key/value pairs gathered from reading and parsing Zowe Global Team Configuration
-
getPartitions
public List<Partition> getPartitions()
Return list of partitions- Returns:
- list of partitions gathered from reading and parsing Zowe Global Team Configuration
-
getProfiles
public List<Profile> getProfiles()
Return list of profiles- Returns:
- list of profiles gathered from reading and parsing Zowe Global Team Configuration
-
getSchema
public String getSchema()
Return schema- Returns:
- schema string value from reading and parsing Zowe Global Team Configuration
-
-