Enum CometPublicationEventScript.Subject
- java.lang.Object
-
- java.lang.Enum<CometPublicationEventScript.Subject>
-
- com.priint.pubserver.comet.entity.publication.CometPublicationEventScript.Subject
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometPublicationEventScript.Subject>
- Enclosing class:
- CometPublicationEventScript
public static enum CometPublicationEventScript.Subject extends java.lang.Enum<CometPublicationEventScript.Subject>
The Enum Subject.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PUBLICATION_AFTER_CHECKOUTAfter checkout a document.PUBLICATION_AFTER_CLOSEAfter close handler for publication documents.PUBLICATION_AFTER_SAVEAfter save handler for publication documents.PUBLICATION_BEFORE_CLOSEBefore close handler for publication documents.PUBLICATION_CHECKINCheckin a publication document.PUBLICATION_CHECKOUTCheckout a publication document.PUBLICATION_CONNECTION_DATAconnection data * DEPRECATED * but required for compatibility to old configurations.PUBLICATION_DOUBLECLICKdouble click events.PUBLICATION_REVERTRevert a publication document.PUBLICATION_STATUSStatus of publication documents.PUBLICATION_TEMPLATE_FILTERscript to filter templates according to active documentPUBLICATION_UNKNOWNThe publication unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFilename()Gets the filename.static CometPublicationEventScript.SubjectvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometPublicationEventScript.Subject[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLICATION_UNKNOWN
public static final CometPublicationEventScript.Subject PUBLICATION_UNKNOWN
The publication unknown.
-
PUBLICATION_CHECKOUT
public static final CometPublicationEventScript.Subject PUBLICATION_CHECKOUT
Checkout a publication document.
-
PUBLICATION_AFTER_SAVE
public static final CometPublicationEventScript.Subject PUBLICATION_AFTER_SAVE
After save handler for publication documents.
-
PUBLICATION_BEFORE_CLOSE
public static final CometPublicationEventScript.Subject PUBLICATION_BEFORE_CLOSE
Before close handler for publication documents.
-
PUBLICATION_STATUS
public static final CometPublicationEventScript.Subject PUBLICATION_STATUS
Status of publication documents.
-
PUBLICATION_CHECKIN
public static final CometPublicationEventScript.Subject PUBLICATION_CHECKIN
Checkin a publication document.
-
PUBLICATION_AFTER_CLOSE
public static final CometPublicationEventScript.Subject PUBLICATION_AFTER_CLOSE
After close handler for publication documents.
-
PUBLICATION_REVERT
public static final CometPublicationEventScript.Subject PUBLICATION_REVERT
Revert a publication document.
-
PUBLICATION_AFTER_CHECKOUT
public static final CometPublicationEventScript.Subject PUBLICATION_AFTER_CHECKOUT
After checkout a document.
-
PUBLICATION_DOUBLECLICK
public static final CometPublicationEventScript.Subject PUBLICATION_DOUBLECLICK
double click events.
-
PUBLICATION_CONNECTION_DATA
public static final CometPublicationEventScript.Subject PUBLICATION_CONNECTION_DATA
connection data * DEPRECATED * but required for compatibility to old configurations.
-
PUBLICATION_TEMPLATE_FILTER
public static final CometPublicationEventScript.Subject PUBLICATION_TEMPLATE_FILTER
script to filter templates according to active document
-
-
Method Detail
-
values
public static CometPublicationEventScript.Subject[] 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 (CometPublicationEventScript.Subject c : CometPublicationEventScript.Subject.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometPublicationEventScript.Subject valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getFilename
public java.lang.String getFilename()
Gets the filename.- Returns:
- the filename
-
-