Nuxeo Enterprise Platform 5.4

org.nuxeo.cm.event
Enum CaseManagementEventConstants.EventNames

java.lang.Object
  extended by java.lang.Enum<CaseManagementEventConstants.EventNames>
      extended by org.nuxeo.cm.event.CaseManagementEventConstants.EventNames
All Implemented Interfaces:
Serializable, Comparable<CaseManagementEventConstants.EventNames>
Enclosing class:
CaseManagementEventConstants

public static enum CaseManagementEventConstants.EventNames
extends Enum<CaseManagementEventConstants.EventNames>


Enum Constant Summary
afterCaseItemSentEvent
          Event sent after a case item is sent.
afterCaseLinkRemovedEvent
          Event sent after a case link is removed.
afterCaseSentEvent
          Event sent after an envelope is sent.
afterDraftCreated
          Event sent after a draft was created.
beforeCaseItemSentEvent
          Event sent before a case item is sent.
beforeCaseLinkRemovedEvent
          Event sent before a case link is removed.
beforeCaseSentEvent
          Event sent before an envelope is sent.
beforeDraftCreated
          Event sent before a draft is created.
caseItemImported
          Event sent after a caseItem was imported.
draftUpdated
          Event sent after a draft was updated.
validateCaseLink
          Event scheduled every day.
 
Method Summary
static CaseManagementEventConstants.EventNames valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CaseManagementEventConstants.EventNames[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

beforeCaseSentEvent

public static final CaseManagementEventConstants.EventNames beforeCaseSentEvent
Event sent before an envelope is sent.


afterCaseSentEvent

public static final CaseManagementEventConstants.EventNames afterCaseSentEvent
Event sent after an envelope is sent.


beforeCaseItemSentEvent

public static final CaseManagementEventConstants.EventNames beforeCaseItemSentEvent
Event sent before a case item is sent.


afterCaseItemSentEvent

public static final CaseManagementEventConstants.EventNames afterCaseItemSentEvent
Event sent after a case item is sent.


beforeDraftCreated

public static final CaseManagementEventConstants.EventNames beforeDraftCreated
Event sent before a draft is created. EventContext is a DocumentEventContext carrying the Envelope.


afterDraftCreated

public static final CaseManagementEventConstants.EventNames afterDraftCreated
Event sent after a draft was created. EventContext is a DocumentEventContext carrying the Envelope. The draft is available as EVENT_CONTEXT_DRAFT.


draftUpdated

public static final CaseManagementEventConstants.EventNames draftUpdated
Event sent after a draft was updated. EventContext is a DocumentEventContext carrying the Envelope. The draft is available as EVENT_CONTEXT_DRAFT.


caseItemImported

public static final CaseManagementEventConstants.EventNames caseItemImported
Event sent after a caseItem was imported. EventContext is a DocumentEventContext carrying the document.


beforeCaseLinkRemovedEvent

public static final CaseManagementEventConstants.EventNames beforeCaseLinkRemovedEvent
Event sent before a case link is removed.


afterCaseLinkRemovedEvent

public static final CaseManagementEventConstants.EventNames afterCaseLinkRemovedEvent
Event sent after a case link is removed.


validateCaseLink

public static final CaseManagementEventConstants.EventNames validateCaseLink
Event scheduled every day.

Method Detail

values

public static CaseManagementEventConstants.EventNames[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (CaseManagementEventConstants.EventNames c : CaseManagementEventConstants.EventNames.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CaseManagementEventConstants.EventNames valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

Nuxeo Enterprise Platform 5.4

Copyright © 2011 Nuxeo SAS. All Rights Reserved.