jet.server.api.admin
Interface ConnectionInformation


public interface ConnectionInformation

Interface ConnectionInformation 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

public java.lang.String getUrl()
Gets the URL of a certain connection.


getUser

public java.lang.String getUser()
Gets the user name of a certain connection.


getExpire

public int getExpire()
Gets the expiring time (ms) of a certain connection.


getIdleExpire

public int getIdleExpire()
Gets the idle expiring time (ms) of a certain connection.


getMaxCount

public int getMaxCount()
Gets the maximal connection count of a certain connection.


getShare

public int getShare()
Gets the maximal share count of a certain connection.


getAttempt

public int getAttempt()
Gets the retried count of a certain connection.


getInterval

public int getInterval()
Gets the retried interval of a certain connection.


getStartTime

public int getStartTime()
Gets last user connecting time of a certain connection..


getIdleTime

public int getIdleTime()
Gets idle time of a certain connection.


getLockNumber

public int getLockNumber()
Gets sharing count of a certain connection.