All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.nasa.pds.citool.commandline.options.ConfigKey Maven / Gradle / Ivy

Go to download

The Legacy Catalog Tool provides functionality for ingesting PDS3 catalog files into the PDS4 infrastructure including the Registry Service.

There is a newer version: 3.1.0
Show newest version
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