com.esri.arcgis.server
Class ServerClusterType

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

public class ServerClusterType
extends java.lang.Object
implements java.io.Serializable

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

See Also:
Serialized Form

Field Summary
protected  java.lang.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  java.lang.String type
          Cluster type as String.
 
Method Summary
 boolean equals(java.lang.Object clusterType)
          Overriding the equals method for this class.
 java.lang.String getDescription()
          Returns the cluster description.
 java.lang.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 java.lang.String type
Cluster type as String.


description

protected java.lang.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 java.lang.String getType()
Returns the cluster type used.

Returns:
String- the cluster type

getDescription

public java.lang.String getDescription()
Returns the cluster description.

Returns:
String- the cluster description

equals

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

Overrides:
equals in class java.lang.Object