org.springframework.config.java.plugin.context
Enum RegistrationPolicy

java.lang.Object
  extended by java.lang.Enum<RegistrationPolicy>
      extended by org.springframework.config.java.plugin.context.RegistrationPolicy
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RegistrationPolicy>

public enum RegistrationPolicy
extends java.lang.Enum<RegistrationPolicy>

Indicates registration behavior when attempting to register an MBean that already exists.

Author:
Chris Beams
See Also:
MBeanExport.registration()

Enum Constant Summary
FAIL_ON_EXISTING
          Fail with an exception
IGNORE_EXISTING
          Ignore new MBean, keep the existing one
REPLACE_EXISTING
          Replace existing MBean with the new one
 
Method Summary
 int getPolicyCode()
          Returns integer associated with constants in MBeanRegistrationSupport
static RegistrationPolicy valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RegistrationPolicy[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FAIL_ON_EXISTING

public static final RegistrationPolicy FAIL_ON_EXISTING
Fail with an exception


IGNORE_EXISTING

public static final RegistrationPolicy IGNORE_EXISTING
Ignore new MBean, keep the existing one


REPLACE_EXISTING

public static final RegistrationPolicy REPLACE_EXISTING
Replace existing MBean with the new one

Method Detail

values

public static RegistrationPolicy[] 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 (RegistrationPolicy c : RegistrationPolicy.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RegistrationPolicy 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

getPolicyCode

public int getPolicyCode()
Returns integer associated with constants in MBeanRegistrationSupport

See Also:
MBeanRegistrationSupport.REGISTRATION_FAIL_ON_EXISTING, MBeanRegistrationSupport.REGISTRATION_IGNORE_EXISTING, MBeanRegistrationSupport.REGISTRATION_REPLACE_EXISTING