Package com.arbortext.epic.cms
Interface CMSSessionDisconnectEvent
- All Superinterfaces:
Event
- All Known Implementing Classes:
CMSSessionDisconnectEventImpl
The
CMSSessionDisconnectEvent interface provides specific
contextual information associated with the
CMSSessionDisconnectEvent extension. These event types
notify programmers of events related to logging off a CMS session.- Since:
- Arbortext 5.4
-
Field Summary
Fields inherited from interface org.w3c.dom.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE -
Method Summary
Modifier and TypeMethodDescriptionSpecifies the CMS user name associated with the session.voidinitCMSSessionDisconnectEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, String currentUser) Initializes the value of anCMSSessionDisconnectEventcreated through theCMSSessionDisconnectEventinterface.Methods inherited from interface org.w3c.dom.events.Event
getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation
-
Method Details
-
getCurrentUser
String getCurrentUser()Specifies the CMS user name associated with the session. -
initCMSSessionDisconnectEvent
void initCMSSessionDisconnectEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, String currentUser) Initializes the value of anCMSSessionDisconnectEventcreated through theCMSSessionDisconnectEventinterface. This method should only be called before theCMSSessionDisconnectEventhas been dispatched using thedispatchEventmethod, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.- Parameters:
typeArg- Specifies the event type.canBubbleArg- Specifies whether or not the event can bubble.cancelableArg- Specifies whether or not the event's default action can be prevented.currentUser- Currently logged on user's name.
-