jet.server.api.rmi.admin
Interface RemoteConnectionInformation

All Superinterfaces:
java.rmi.Remote

public interface RemoteConnectionInformation
extends java.rmi.Remote

Interface RemoteConnectionInformation provide imformation of connections.


Method Summary
 int getAttempt()
          Gets the retried count of a certain connection.
 int getExpire()
          Gets the expiring time (ms) of a certain connection.
 int getIdleExpire()
          Gets the idle expiring time (ms) of a certain connection.
 int getIdleTime()
          Gets idle time of a certain connection.
 int getInterval()
          Gets the retried interval of a certain connection.
 int getLockNumber()
          Gets sharing count of a certain connection.
 int getMaxCount()
          Gets the maximal connection count of a certain connection.
 int getShare()
          Gets the maximal share count of a certain connection.
 int getStartTime()
          Gets last user connecting time of a certain connection..
 java.lang.String getUrl()
          Gets the URL of a certain connection.
 java.lang.String getUser()
          Gets the user name of a certain connection.
 

Method Detail

getUrl

java.lang.String getUrl()
                        throws java.rmi.RemoteException
Gets the URL of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getUser

java.lang.String getUser()
                         throws java.rmi.RemoteException
Gets the user name of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getExpire

int getExpire()
              throws java.rmi.RemoteException
Gets the expiring time (ms) of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getIdleExpire

int getIdleExpire()
                  throws java.rmi.RemoteException
Gets the idle expiring time (ms) of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getMaxCount

int getMaxCount()
                throws java.rmi.RemoteException
Gets the maximal connection count of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getShare

int getShare()
             throws java.rmi.RemoteException
Gets the maximal share count of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getAttempt

int getAttempt()
               throws java.rmi.RemoteException
Gets the retried count of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getInterval

int getInterval()
                throws java.rmi.RemoteException
Gets the retried interval of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getStartTime

int getStartTime()
                 throws java.rmi.RemoteException
Gets last user connecting time of a certain connection..

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getIdleTime

int getIdleTime()
                throws java.rmi.RemoteException
Gets idle time of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.

getLockNumber

int getLockNumber()
                  throws java.rmi.RemoteException
Gets sharing count of a certain connection.

Throws:
java.rmi.RemoteException - will be thrown if error occurs.