com.iplanet.sso
インタフェース SSOTokenEvent


public interface SSOTokenEvent

The SSOTokenEvent is an interface that represents an SSO token event.The single sign on token event represents a change in SSOToken.

The following are possible SSO token event types:


フィールドの概要
static int SSO_TOKEN_DESTROY
          SSO Token destroy event.
static int SSO_TOKEN_IDLE_TIMEOUT
          SSO Token idle timeout event.
static int SSO_TOKEN_MAX_TIMEOUT
          SSO Token maximum time out event.
static int SSO_TOKEN_PROPERTY_CHANGED
          SSO Token property changed event.
 
メソッドの概要
 long getTime()
          Returns the time of this event.
 SSOToken getToken()
          Returns the SSOToken associated with the SSO Token event.
 int getType()
          Returns the type of this event.
 

フィールドの詳細

SSO_TOKEN_IDLE_TIMEOUT

static final int SSO_TOKEN_IDLE_TIMEOUT
SSO Token idle timeout event.

関連項目:
定数フィールド値

SSO_TOKEN_MAX_TIMEOUT

static final int SSO_TOKEN_MAX_TIMEOUT
SSO Token maximum time out event.

関連項目:
定数フィールド値

SSO_TOKEN_DESTROY

static final int SSO_TOKEN_DESTROY
SSO Token destroy event.

関連項目:
定数フィールド値

SSO_TOKEN_PROPERTY_CHANGED

static final int SSO_TOKEN_PROPERTY_CHANGED
SSO Token property changed event.

関連項目:
定数フィールド値
メソッドの詳細

getToken

SSOToken getToken()
Returns the SSOToken associated with the SSO Token event.

戻り値:
SSOToken

getTime

long getTime()
Returns the time of this event.

戻り値:
The event time as UTC milliseconds from the epoch.

getType

int getType()
            throws SSOException
Returns the type of this event.

戻り値:
The type of this event. Possible types are :
  • SSO_TOKEN_IDLE_TIMEOUT
  • SSO_TOKEN_MAX_TIMEOUT
  • SSO_TOKEN_DESTROY
  • and
  • SSO_TOKEN_PROPERTY_CHANGED
例外:
SSOException - if the SSOTokenEvent type is not one of the above.