com.esri.arcgis.server
Class ServerClusterType

java.lang.Object
  extended by com.esri.arcgis.server.ServerClusterType
All Implemented Interfaces:
Serializable

public class ServerClusterType
extends Object
implements Serializable

The ServerClusterType class represents the clustering types available {FAIL_OVER|ROUND_ROBIN|NONE}.

See Also:
Serialized Form

Field Summary
protected  String description
          Description of cluster type as String.
static ServerClusterType FAIL_OVER
          The Servers in the cluster are used in the Failover Mode.
static ServerClusterType NONE
          No cluster type supported, only the first one in the list is used.
static ServerClusterType ROUND_ROBIN
          The Servers in the cluster are used in the RoundRobin Mode.
protected  String type
          Cluster type as String.
 
Method Summary
 boolean equals(Object clusterType)
          Overriding the equals method for this class.
 String getDescription()
          Returns the cluster description.
 String getType()
          Returns the cluster type used.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

type

protected String type
Cluster type as String.


description

protected String description
Description of cluster type as String.


NONE

public static final ServerClusterType NONE
No cluster type supported, only the first one in the list is used.


FAIL_OVER

public static final ServerClusterType FAIL_OVER
The Servers in the cluster are used in the Failover Mode.


ROUND_ROBIN

public static final ServerClusterType ROUND_ROBIN
The Servers in the cluster are used in the RoundRobin Mode.

Method Detail

getType

public String getType()
Returns the cluster type used.

Returns:
String- the cluster type

getDescription

public String getDescription()
Returns the cluster description.

Returns:
String- the cluster description

equals

public boolean equals(Object clusterType)
Overriding the equals method for this class.

Overrides:
equals in class Object