gov.cca.ports
Interface StandardEventType

All Known Subinterfaces:
ConnectionEvent

public interface StandardEventType

Mapping of standard event types in the component lifecycle to strings and integers. In decoding the EventData messages, each kind of event here requires details to make sense. The details string is composed of information we want to eventually be in XML. Basic info types: FID - framework ID string, likely to be the component id of an outermost container. CID - existing local container ID string, CN - component local name, within its container. pport - name of a provides port as known to the component defining it. uport - name of a uses port as known to the component defining it. class - name of port type or of component type as registered in factory. Prefixes/suffixes: caller - the using side of a connection callee - the used side of a connection requested - the name is a suggestion.


Field Summary
static int ALL
          The enumerated value type for a listener to indicate it wants all notices.
static java.lang.String ALL_string
           
static int ComponentAdded
          A component newly created.
static java.lang.String ComponentAdded_string
           
static int ComponentAddPending
          A component creation requested.
static java.lang.String ComponentAddPending_string
           
static int ComponentDeleted
          A component deletion completed.
static java.lang.String ComponentDeleted_string
           
static int ComponentDeletePending
          A component deletion requested.
static java.lang.String ComponentDeletePending_string
           
static int Connected
          A connection recently made.
static java.lang.String Connected_string
           
static int ConnectPending
          A connection may soon be made.
static java.lang.String ConnectPending_string
           
static int Disconnected
          A connection recently unmade.
static java.lang.String Disconnected_string
           
static int DisconnectPending
          A connection may soon be unmade.
static java.lang.String DisconnectPending_string
           
static int Error
          Somebody lost their cookies.
static java.lang.String Error_string
           
static int FactoryClosed
          A factory is no longer available for more creations.
static java.lang.String FactoryClosed_string
           
static int FactoryOpened
          A factory is now available.
static java.lang.String FactoryOpened_string
           
static int NONE
          When digesting an alleged string or int type, it was found not to be in the standard.
static java.lang.String NONE_string
           
static int PortAdded
          A provides port was added and is available.
static java.lang.String PortAdded_string
           
static int PortAddPending
          A provides port is being added (but not yet available).
static java.lang.String PortAddPending_string
           
static int PortFetched
          A port has been fetched with getPort.
static java.lang.String PortFetched_string
           
static int PortFetchPending
          A port is about to be fetched for use with getPort.
static java.lang.String PortFetchPending_string
           
static int PortRegistered
          A uses port was registered.
static java.lang.String PortRegistered_string
           
static int PortRegisterPending
          A uses port is about to be registered.
static java.lang.String PortRegisterPending_string
           
static int PortReleased
          A port has been released with releasePort.
static java.lang.String PortReleased_string
           
static int PortReleasePending
          A port is about to be released from use with releasePort.
static java.lang.String PortReleasePending_string
           
static int PortRemoved
          A provides port has been removed and is no longer available.
static java.lang.String PortRemoved_string
           
static int PortRemovePending
          A provides port is being removed, but is still available.
static java.lang.String PortRemovePending_string
           
static int PortUnregistered
          A uses port has been unregistered.
static java.lang.String PortUnregistered_string
           
static int PortUnregisterPending
          A uses port is about to be unregistered.
static java.lang.String PortUnregisterPending_string
           
 

Field Detail

NONE

static final int NONE
When digesting an alleged string or int type, it was found not to be in the standard.

See Also:
Constant Field Values

NONE_string

static final java.lang.String NONE_string
See Also:
Constant Field Values

Error

static final int Error
Somebody lost their cookies. Should never be deliberately sent or received.

See Also:
Constant Field Values

Error_string

static final java.lang.String Error_string
See Also:
Constant Field Values

ALL

static final int ALL
The enumerated value type for a listener to indicate it wants all notices. Never delivered to a listener.

See Also:
Constant Field Values

ALL_string

static final java.lang.String ALL_string
See Also:
Constant Field Values

ConnectPending

static final int ConnectPending
A connection may soon be made. (Assuming no errors in process). The detail string is of form FID CID caller-CN callee-uport callee-CN callee-pport.

See Also:
Constant Field Values

ConnectPending_string

static final java.lang.String ConnectPending_string
See Also:
Constant Field Values

Connected

static final int Connected
A connection recently made. The detail string is of form FID CID caller-CN caller-uport callee-CN callee-pport.

See Also:
Constant Field Values

Connected_string

static final java.lang.String Connected_string
See Also:
Constant Field Values

DisconnectPending

static final int DisconnectPending
A connection may soon be unmade. (Assuming no errors in process). The detail string is of form FID CID caller-CN caller-uport callee-CN callee-pport.

See Also:
Constant Field Values

DisconnectPending_string

static final java.lang.String DisconnectPending_string
See Also:
Constant Field Values

Disconnected

static final int Disconnected
A connection recently unmade. The detail string is of form FID CID caller-CN caller-uport callee-CN callee-pport.

See Also:
Constant Field Values

Disconnected_string

static final java.lang.String Disconnected_string
See Also:
Constant Field Values

ComponentAddPending

static final int ComponentAddPending
A component creation requested. (Assuming no errors in process). The detail string is of form FID CID class CN-requested.

See Also:
Constant Field Values

ComponentAddPending_string

static final java.lang.String ComponentAddPending_string
See Also:
Constant Field Values

ComponentAdded

static final int ComponentAdded
A component newly created. The detail string is of form FID CID class CN.

See Also:
Constant Field Values

ComponentAdded_string

static final java.lang.String ComponentAdded_string
See Also:
Constant Field Values

ComponentDeletePending

static final int ComponentDeletePending
A component deletion requested. The detail string is of form FID CID CN.

See Also:
Constant Field Values

ComponentDeletePending_string

static final java.lang.String ComponentDeletePending_string
See Also:
Constant Field Values

ComponentDeleted

static final int ComponentDeleted
A component deletion completed. The detail string is of form FID CID CN.

See Also:
Constant Field Values

ComponentDeleted_string

static final java.lang.String ComponentDeleted_string
See Also:
Constant Field Values

PortAddPending

static final int PortAddPending
A provides port is being added (but not yet available). (Assuming no errors in process). The detail string is of form FID CID CN pport-requested.

See Also:
Constant Field Values

PortAddPending_string

static final java.lang.String PortAddPending_string
See Also:
Constant Field Values

PortAdded

static final int PortAdded
A provides port was added and is available. The detail string is of form FID CID CN pport.

See Also:
Constant Field Values

PortAdded_string

static final java.lang.String PortAdded_string
See Also:
Constant Field Values

PortRemovePending

static final int PortRemovePending
A provides port is being removed, but is still available. The detail string is of form FID CID CN pport.

See Also:
Constant Field Values

PortRemovePending_string

static final java.lang.String PortRemovePending_string
See Also:
Constant Field Values

PortRemoved

static final int PortRemoved
A provides port has been removed and is no longer available. The detail string is of form FID CID CN pport.

See Also:
Constant Field Values

PortRemoved_string

static final java.lang.String PortRemoved_string
See Also:
Constant Field Values

PortRegisterPending

static final int PortRegisterPending
A uses port is about to be registered. (Assuming no errors in process). The detail string is of form FID CID CN uport-requested.

See Also:
Constant Field Values

PortRegisterPending_string

static final java.lang.String PortRegisterPending_string
See Also:
Constant Field Values

PortRegistered

static final int PortRegistered
A uses port was registered. The detail string is of form FID CID CN uport.

See Also:
Constant Field Values

PortRegistered_string

static final java.lang.String PortRegistered_string
See Also:
Constant Field Values

PortUnregisterPending

static final int PortUnregisterPending
A uses port is about to be unregistered. The detail string is of form FID CID CN uport.

See Also:
Constant Field Values

PortUnregisterPending_string

static final java.lang.String PortUnregisterPending_string
See Also:
Constant Field Values

PortUnregistered

static final int PortUnregistered
A uses port has been unregistered. The detail string is of form FID CID CN uport.

See Also:
Constant Field Values

PortUnregistered_string

static final java.lang.String PortUnregistered_string
See Also:
Constant Field Values

PortFetchPending

static final int PortFetchPending
A port is about to be fetched for use with getPort. The detail string is of form FID CID CN uport.

See Also:
Constant Field Values

PortFetchPending_string

static final java.lang.String PortFetchPending_string
See Also:
Constant Field Values

PortFetched

static final int PortFetched
A port has been fetched with getPort. The detail string is of form FID CID CN uport.

See Also:
Constant Field Values

PortFetched_string

static final java.lang.String PortFetched_string
See Also:
Constant Field Values

PortReleasePending

static final int PortReleasePending
A port is about to be released from use with releasePort. The detail string is of form FID CID CN uport.

See Also:
Constant Field Values

PortReleasePending_string

static final java.lang.String PortReleasePending_string
See Also:
Constant Field Values

PortReleased

static final int PortReleased
A port has been released with releasePort. The detail string is of form FID CID CN uport.

See Also:
Constant Field Values

PortReleased_string

static final java.lang.String PortReleased_string
See Also:
Constant Field Values

FactoryOpened

static final int FactoryOpened
A factory is now available. The detail string is of form FID CID CN.

See Also:
Constant Field Values

FactoryOpened_string

static final java.lang.String FactoryOpened_string
See Also:
Constant Field Values

FactoryClosed

static final int FactoryClosed
A factory is no longer available for more creations. It may remain open for destruction of previously created items, however. ComponentDeleted is the final message in the lifecycle of the component, factory or not. The detail string is of form FID CID CN.

See Also:
Constant Field Values

FactoryClosed_string

static final java.lang.String FactoryClosed_string
See Also:
Constant Field Values