gov.nasa.pds.citool.commandline.options.ToolsPropertiesConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of catalog Show documentation
Show all versions of catalog Show documentation
The Catalog Tool provides functionality for ingesting PDS3 catalog files into the the PDS4 infrastructure including the Registry and Storage Services.
package gov.nasa.pds.citool.commandline.options;
import java.io.File;
import java.util.List;
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;
public class ToolsPropertiesConfiguration extends PropertiesConfiguration {
public ToolsPropertiesConfiguration(File file) throws ConfigurationException {
super(file);
}
public boolean containsKey(ConfigKey configKey) {
return containsKey(configKey.getKey());
}
public List getList(ConfigKey configKey) {
return getList(configKey.getKey());
}
public int getInt(ConfigKey configKey) {
return getInt(configKey.getKey());
}
public String getString(ConfigKey configKey) {
return getString(configKey.getKey());
}
public Boolean getBoolean(ConfigKey configKey) {
return getBoolean(configKey.getKey());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy