com.ibm.datapower.wamt.clientAPI
Enum DomainSynchronizationMode

java.lang.Object
  extended by java.lang.Enum<DomainSynchronizationMode>
      extended by com.ibm.datapower.wamt.clientAPI.DomainSynchronizationMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DomainSynchronizationMode>

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

DomainSynchronizationMode is an enumeration used to determine the synchronization policy that will used for managed domains.

The default is MANUAL. Configuration deployment is done manually. The administrator is responsible for manually scheduling the Domain deploy configuration task.

With the AUTO mode, configuration deployment is synchronized automatically.

See Also:
ManagedSet.setSynchronizationModeForDomain(String, DomainSynchronizationMode), Domain.setSynchronizationMode(DomainSynchronizationMode)

Enum Constant Summary
AUTO
           
MANUAL
           
 
Method Summary
static DomainSynchronizationMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DomainSynchronizationMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AUTO

public static final DomainSynchronizationMode AUTO

MANUAL

public static final DomainSynchronizationMode MANUAL
Method Detail

values

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

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

valueOf

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


© Copyright IBM Corp. 2006, 2010 All Rights Reserved.