com.esri.aims.mtier.model.admin
Class SdeStatus

java.lang.Object
  extended by com.esri.aims.mtier.model.admin.SdeStatus

public class SdeStatus
extends Object

Represents the status of a current ArcSDE instance. The status properties include,

An SdeStatus is instantiated using the sdeServer.sdeServerStatus class thus,

 
  SdeStatus stat = sdeserver.sdeServerStatus(connectionproxy,sdeServer);
 //get status of a server (sdeserver is an instance of the sdeServer class)
 System.out.println(stat.getNumConnections());
 System.out.println(stat.getRelease());
 System.out.println(stat.getStatus());
  


Constructor Summary
SdeStatus()
           
 
Method Summary
 String getNumConnections()
          Returns the number of active connections to an ArcSDE Application Server.
 String getRelease()
          Returns the release number of the ArcSDE server.
 String getStatus()
          Returns the current status of an ArcSDE Server - RUNNING, SHUTDOWN, PAUSED.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SdeStatus

public SdeStatus()
Method Detail

getNumConnections

public String getNumConnections()
Returns the number of active connections to an ArcSDE Application Server.


getRelease

public String getRelease()
Returns the release number of the ArcSDE server.


getStatus

public String getStatus()
Returns the current status of an ArcSDE Server - RUNNING, SHUTDOWN, PAUSED.