gov.nasa.pds.citool.commandline.options.ConfigKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of catalog-legacy Show documentation
Show all versions of catalog-legacy Show documentation
The Legacy Catalog Tool provides functionality for ingesting PDS3 catalog files into the PDS4 infrastructure including the Registry Service.
package gov.nasa.pds.citool.commandline.options;
public enum ConfigKey {
MODE("citool.mode"),
TARGET("citool.targets"),
LOCAL("citool.local"),
REPORT("citool.report"),
DICTIONARIES("citool.dictionaries"),
INCLUDES("citool.includePaths"),
VERBOSE("citool.verbose"),
USER("citool.user"),
PASS("citool.pass"),
SERVERURL("citool.serverUrl"),
TRANSPORTURL("citool.transportUrl"),
KEYPASS("citool.keypass"),
ALLREFS("citool.allrefs"),
ALIAS("citool.alias");
private final String key;
private ConfigKey(String key) {
this.key = key;
}
public String getKey() {
return key;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy