public enum DocumentEventTypes extends Enum<DocumentEventTypes>
| Enum Constant and Description |
|---|
ADD_DOCUMENT_TO_PROCESS
Akcja zostaje uruchomiona w momencie dodania dokumentu z archiwum do procesu
|
CHANGE_PROCESS_DATA
Akcja zostaje uruchomiona w momencie zaakceptowania zadania
|
DELETE_DOCUMENT_FROM_ARCHIVE
Akcja zostaje uruchomiona w momencie usunięcia dokumentu z archiwum
|
DELETE_DOCUMENT_FROM_PROCESS
Akcja zostaje uruchomiona w momencie odłączenia dokumentu od procesu
|
DOCUMENT_EXPIRED
Akcja jest wywoływana w momencie gdy dokument stracił ważność
|
NEW_DOCUMENT_IN_ARCHIVE
Odpowiada zdarzeniu pojawienia się nowego dokumentu w archiwum ( czy to z dysku czy z WebService'u )
|
NEW_DOCUMENT_IN_PROCESS
Event ten zachodzi w momencie podłączenia dokumentu z dysku do procesu.
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentEventTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentEventTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentEventTypes NEW_DOCUMENT_IN_ARCHIVE
public static final DocumentEventTypes NEW_DOCUMENT_IN_PROCESS
public static final DocumentEventTypes CHANGE_PROCESS_DATA
public static final DocumentEventTypes DELETE_DOCUMENT_FROM_ARCHIVE
public static final DocumentEventTypes ADD_DOCUMENT_TO_PROCESS
public static final DocumentEventTypes DELETE_DOCUMENT_FROM_PROCESS
public static final DocumentEventTypes DOCUMENT_EXPIRED
public static DocumentEventTypes[] values()
for (DocumentEventTypes c : DocumentEventTypes.values()) System.out.println(c);
public static DocumentEventTypes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015 Suncode. All rights reserved.