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 Summary
Enum Constants Enum Constant Description BACKEND
Backend key.CC_BASIC
saperion.properties.FEATURES
Feature key.RMI_BASIC
saperion.properties.RMI_HIBERNATE_CFG
hibernate.cfg.xml.RMI_HIBERNATE_MAPPING
hibernate-mapping-3.0.dtd.RMI_HIBERNATE_NAMED
hibernateNamedQueries.properties.RMI_HIBERNATE_TEMPLATE_ADDITIONAL
Template for hibernate mapping for additional data-source.RMI_HIBERNATE_TEMPLATE_DEFAULT
Template for hibernate mapping for default data-source.RMI_HIBERNATE_TEMPLATE_DEFAULT_DB2
Template for hibernate mapping for default data-source.RMI_STORAGE
storage.properties.RMI_STORAGE_KEYSTORE
storage.keystore.RMI_STORAGE_STARTMGR
storage manager start.SCR_BASIC
scr-config.xml.SCR_BUILDIN_CONTRAINTS
buildin_constraints.xml.SCR_CUSTOM_NODETYPES
custom_nodetypes.xml.SCR_NS_REG_NAME
ns_reg.properties.SCR_REPOSITORY_CFG
repository.properties.STARTMODE
Start mode (application/service) key.SYSTEM
System key.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getFileName()
Configuration filename.java.lang.String
getName()
Configuration name.SaJMXConstants.ConfigType
getType()
Configuration type.boolean
isMandatory()
java.lang.String
toString()
static SaJMXConstants.ConfigKey
valueOf(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
-
SYSTEM
public static final SaJMXConstants.ConfigKey SYSTEM
System key.
-
BACKEND
public static final SaJMXConstants.ConfigKey BACKEND
Backend key.
-
FEATURES
public static final SaJMXConstants.ConfigKey FEATURES
Feature key.
-
STARTMODE
public static final SaJMXConstants.ConfigKey STARTMODE
Start mode (application/service) key.
-
RMI_HIBERNATE_MAPPING
public static final SaJMXConstants.ConfigKey RMI_HIBERNATE_MAPPING
hibernate-mapping-3.0.dtd.
-
RMI_HIBERNATE_CFG
public static final SaJMXConstants.ConfigKey RMI_HIBERNATE_CFG
hibernate.cfg.xml.
-
RMI_HIBERNATE_NAMED
public static final SaJMXConstants.ConfigKey RMI_HIBERNATE_NAMED
hibernateNamedQueries.properties.
-
RMI_HIBERNATE_TEMPLATE_DEFAULT
public static final SaJMXConstants.ConfigKey RMI_HIBERNATE_TEMPLATE_DEFAULT
Template for hibernate mapping for default data-source.
-
RMI_HIBERNATE_TEMPLATE_DEFAULT_DB2
public static final SaJMXConstants.ConfigKey RMI_HIBERNATE_TEMPLATE_DEFAULT_DB2
Template for hibernate mapping for default data-source.
-
RMI_HIBERNATE_TEMPLATE_ADDITIONAL
public static final SaJMXConstants.ConfigKey RMI_HIBERNATE_TEMPLATE_ADDITIONAL
Template for hibernate mapping for additional data-source.
-
RMI_BASIC
public static final SaJMXConstants.ConfigKey RMI_BASIC
saperion.properties.
-
RMI_STORAGE
public static final SaJMXConstants.ConfigKey RMI_STORAGE
storage.properties.
-
RMI_STORAGE_KEYSTORE
public static final SaJMXConstants.ConfigKey RMI_STORAGE_KEYSTORE
storage.keystore.
-
RMI_STORAGE_STARTMGR
public static final SaJMXConstants.ConfigKey RMI_STORAGE_STARTMGR
storage manager start.
-
CC_BASIC
public static final SaJMXConstants.ConfigKey CC_BASIC
saperion.properties.
-
SCR_BASIC
public static final SaJMXConstants.ConfigKey SCR_BASIC
scr-config.xml.
-
SCR_REPOSITORY_CFG
public static final SaJMXConstants.ConfigKey SCR_REPOSITORY_CFG
repository.properties.
-
SCR_CUSTOM_NODETYPES
public static final SaJMXConstants.ConfigKey SCR_CUSTOM_NODETYPES
custom_nodetypes.xml.
-
SCR_BUILDIN_CONTRAINTS
public static final SaJMXConstants.ConfigKey SCR_BUILDIN_CONTRAINTS
buildin_constraints.xml.
-
SCR_NS_REG_NAME
public static final SaJMXConstants.ConfigKey SCR_NS_REG_NAME
ns_reg.properties.
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
Configuration name.- Returns:
- Name
-
getType
public SaJMXConstants.ConfigType getType()
Configuration type.- Returns:
- Configuration type
-
getFileName
public java.lang.String getFileName()
Configuration filename.- Returns:
- Filename
-
isMandatory
public boolean isMandatory()
- Returns:
- true if config key is mandatory
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<SaJMXConstants.ConfigKey>
- See Also:
Enum.toString()
-
-