Package com.saperion.config
Enum SaJMXConstants.ConfigKey
- java.lang.Object
- 
- java.lang.Enum<SaJMXConstants.ConfigKey>
- 
- com.saperion.config.SaJMXConstants.ConfigKey
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<SaJMXConstants.ConfigKey>
 - Enclosing class:
- SaJMXConstants
 
 public static enum SaJMXConstants.ConfigKey extends java.lang.Enum<SaJMXConstants.ConfigKey> Configuration keys.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BACKENDBackend key.CC_BASICsaperion.properties.FEATURESFeature key.RMI_BASICsaperion.properties.RMI_HIBERNATE_CFGhibernate.cfg.xml.RMI_HIBERNATE_MAPPINGhibernate-mapping-3.0.dtd.RMI_HIBERNATE_NAMEDhibernateNamedQueries.properties.RMI_HIBERNATE_TEMPLATE_ADDITIONALTemplate for hibernate mapping for additional data-source.RMI_HIBERNATE_TEMPLATE_DEFAULTTemplate for hibernate mapping for default data-source.RMI_HIBERNATE_TEMPLATE_DEFAULT_DB2Template for hibernate mapping for default data-source.RMI_STORAGEstorage.properties.RMI_STORAGE_KEYSTOREstorage.keystore.RMI_STORAGE_STARTMGRstorage manager start.SCR_BASICscr-config.xml.SCR_BUILDIN_CONTRAINTSbuildin_constraints.xml.SCR_CUSTOM_NODETYPEScustom_nodetypes.xml.SCR_NS_REG_NAMEns_reg.properties.SCR_REPOSITORY_CFGrepository.properties.STARTMODEStart mode (application/service) key.SYSTEMSystem key.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFileName()Configuration filename.java.lang.StringgetName()Configuration name.SaJMXConstants.ConfigTypegetType()Configuration type.booleanisMandatory()java.lang.StringtoString()static SaJMXConstants.ConfigKeyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SaJMXConstants.ConfigKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SYSTEMpublic static final SaJMXConstants.ConfigKey SYSTEM System key.
 - 
BACKENDpublic static final SaJMXConstants.ConfigKey BACKEND Backend key.
 - 
FEATURESpublic static final SaJMXConstants.ConfigKey FEATURES Feature key.
 - 
STARTMODEpublic static final SaJMXConstants.ConfigKey STARTMODE Start mode (application/service) key.
 - 
RMI_HIBERNATE_MAPPINGpublic static final SaJMXConstants.ConfigKey RMI_HIBERNATE_MAPPING hibernate-mapping-3.0.dtd.
 - 
RMI_HIBERNATE_CFGpublic static final SaJMXConstants.ConfigKey RMI_HIBERNATE_CFG hibernate.cfg.xml.
 - 
RMI_HIBERNATE_NAMEDpublic static final SaJMXConstants.ConfigKey RMI_HIBERNATE_NAMED hibernateNamedQueries.properties.
 - 
RMI_HIBERNATE_TEMPLATE_DEFAULTpublic static final SaJMXConstants.ConfigKey RMI_HIBERNATE_TEMPLATE_DEFAULT Template for hibernate mapping for default data-source.
 - 
RMI_HIBERNATE_TEMPLATE_DEFAULT_DB2public static final SaJMXConstants.ConfigKey RMI_HIBERNATE_TEMPLATE_DEFAULT_DB2 Template for hibernate mapping for default data-source.
 - 
RMI_HIBERNATE_TEMPLATE_ADDITIONALpublic static final SaJMXConstants.ConfigKey RMI_HIBERNATE_TEMPLATE_ADDITIONAL Template for hibernate mapping for additional data-source.
 - 
RMI_BASICpublic static final SaJMXConstants.ConfigKey RMI_BASIC saperion.properties.
 - 
RMI_STORAGEpublic static final SaJMXConstants.ConfigKey RMI_STORAGE storage.properties.
 - 
RMI_STORAGE_KEYSTOREpublic static final SaJMXConstants.ConfigKey RMI_STORAGE_KEYSTORE storage.keystore.
 - 
RMI_STORAGE_STARTMGRpublic static final SaJMXConstants.ConfigKey RMI_STORAGE_STARTMGR storage manager start.
 - 
CC_BASICpublic static final SaJMXConstants.ConfigKey CC_BASIC saperion.properties.
 - 
SCR_BASICpublic static final SaJMXConstants.ConfigKey SCR_BASIC scr-config.xml.
 - 
SCR_REPOSITORY_CFGpublic static final SaJMXConstants.ConfigKey SCR_REPOSITORY_CFG repository.properties.
 - 
SCR_CUSTOM_NODETYPESpublic static final SaJMXConstants.ConfigKey SCR_CUSTOM_NODETYPES custom_nodetypes.xml.
 - 
SCR_BUILDIN_CONTRAINTSpublic static final SaJMXConstants.ConfigKey SCR_BUILDIN_CONTRAINTS buildin_constraints.xml.
 - 
SCR_NS_REG_NAMEpublic static final SaJMXConstants.ConfigKey SCR_NS_REG_NAME ns_reg.properties.
 
- 
 - 
Method Detail- 
valuespublic static SaJMXConstants.ConfigKey[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SaJMXConstants.ConfigKey c : SaJMXConstants.ConfigKey.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SaJMXConstants.ConfigKey valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getNamepublic java.lang.String getName() Configuration name.- Returns:
- Name
 
 - 
getTypepublic SaJMXConstants.ConfigType getType() Configuration type.- Returns:
- Configuration type
 
 - 
getFileNamepublic java.lang.String getFileName() Configuration filename.- Returns:
- Filename
 
 - 
isMandatorypublic boolean isMandatory() - Returns:
- true if config key is mandatory
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<SaJMXConstants.ConfigKey>
- See Also:
- Enum.toString()
 
 
- 
 
-