Interface SCP81ConnectionStatus

All Superinterfaces:
Event

@Deprecated public interface SCP81ConnectionStatus extends Event
Deprecated.
This interface defines event constants that are used for notifications of state changes of connections represented by SCP81Connection: connection established (corresponds to successful open()) connection setup failed (corresponds to unsuccessful open()) connection closed (corresponds to successful close()) communication error (corresponds to unexpected communication breakdown) server switch to other application (corresponds to server selecting another application via Content-Type header field) The object implementing SCP81ConnectionStatus interface is a Temporary Entry Point Object. * @deprecated This interface is obsolete use SCP8XConnectionStatus instead
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final short
    Deprecated.
    This constant is used if connection was closed due to a communication error.
    static final short
    Deprecated.
    This constant is used if connection was closed due an invocation of SCP81Connection.close().
    static final short
    Deprecated.
    This constant is used if the connection was successfully opened..
    static final short
    Deprecated.
    This constant is used if the connection could not been opened.
    static final short
    Deprecated.
    This constant is used if connection server switched to another application via Content-Type header field
  • Method Summary

    Modifier and Type
    Method
    Description
    short
    Deprecated.
    Used to retrieve detailed information about the state change..

    Methods inherited from interface uicc.connection.Event

    getObservable
  • Field Details

    • CONNECTION_ESTABLISHED

      static final short CONNECTION_ESTABLISHED
      Deprecated.
      This constant is used if the connection was successfully opened..
      See Also:
    • CONNECTION_SETUP_FAILED

      static final short CONNECTION_SETUP_FAILED
      Deprecated.
      This constant is used if the connection could not been opened.
      See Also:
    • COMMUNICATION_ERROR

      static final short COMMUNICATION_ERROR
      Deprecated.
      This constant is used if connection was closed due to a communication error.
      See Also:
    • CONNECTION_CLOSED

      static final short CONNECTION_CLOSED
      Deprecated.
      This constant is used if connection was closed due an invocation of SCP81Connection.close().
      See Also:
    • SERVER_SWITCH

      static final short SERVER_SWITCH
      Deprecated.
      This constant is used if connection server switched to another application via Content-Type header field
      See Also:
  • Method Details

    • getDetails

      short getDetails()
      Deprecated.
      Used to retrieve detailed information about the state change..
      Returns:
      the reason for closing this connection.