com.edustructures.sifworks
Enum AgentProvisioningMode

java.lang.Object
  extended by java.lang.Enum<AgentProvisioningMode>
      extended by com.edustructures.sifworks.AgentProvisioningMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AgentProvisioningMode>

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

Refer to the Developer Guide for more information on the ADK's provisioning modes.


Enum Constant Summary
ADK
          The ADK uses the ADK-Managed Provisioning mode for this zone.
AGENT
          The ADK uses the Agent-Managed Provisioning mode for this zone.
ZIS
          The ADK uses the ZIS-Managed Provisioning mode for this zone.
 
Method Summary
static AgentProvisioningMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AgentProvisioningMode[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

ZIS

public static final AgentProvisioningMode ZIS
The ADK uses the ZIS-Managed Provisioning mode for this zone. ADK methods such as Agent.connect and Topic.subscribe that would normally cause the ADK to send a provisioning message will not send the message when this mode is enabled. Provisioning messages include: SIF_Register and SIF_Unregister, SIF_Subscribe and SIF_Unsubscribe, and SIF_Provide and SIF_Unprovide.

Refer to the Developer Guide for more information on the ADK's provisioning modes.


ADK

public static final AgentProvisioningMode ADK
The ADK uses the ADK-Managed Provisioning mode for this zone. When enabled, the ADK sends provisioning messages at the appropriate times when methods such as Agent.connect and Topic.subscribe are called. Refer to the Developer Guide for more information on the ADK's provisioning modes.


AGENT

public static final AgentProvisioningMode AGENT
The ADK uses the Agent-Managed Provisioning mode for this zone. When enabled, the ADK does not send any provisioning messages. Agents must explicitly call the following methods of the Zone class to perform all provisioning tasks:

Refer to the Developer Guide for more information on the ADK's provisioning modes.

Method Detail

values

public static final AgentProvisioningMode[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AgentProvisioningMode c : AgentProvisioningMode.values())
        System.out.println(c);

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

valueOf

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


Copyright © 2001-2007 Edustructures LLC. All Rights Reserved. SIFWorks® and ADK® are registered trademarks of Edustructures LLC. SIF™ and Schools Interoperability Framework are trademarks of the Schools Interoperability Framework Association.