/** * */ package at.knowcenter.wag.egov.egiz.sig.connectors; /** * This class contains the key constants used by the Connectors to retrieve * templates etc. from the Configuration. * * @author wprinz */ public abstract class ConnectorConfigurationKeys { /** * The application mode sign */ public static final String VALUE_MODE_SIGN = "sign"; /** * The application mode verify */ public static final String VALUE_MODE_VERIFY = "verify"; /** * The key used to read out the available for web property. */ public static final String AVAILABLE_FOR_WEB = "available_for_web"; /** * The key used to read out the available for commandline property. */ public static final String AVAILABLE_FOR_COMMANDLINE = "available_for_commandline"; }