Enum CmisSender.CmisAction
- java.lang.Object
-
- java.lang.Enum<CmisSender.CmisAction>
-
- org.frankframework.extensions.cmis.CmisSender.CmisAction
-
- All Implemented Interfaces:
Serializable,Comparable<CmisSender.CmisAction>
- Enclosing class:
- CmisSender
public static enum CmisSender.CmisAction extends Enum<CmisSender.CmisAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATECreate a documentDELETEDelete a documentDYNAMICDetermine action based on the incoming CmisEventFETCHGet the (meta)data of a folder or documentFINDPerform a query that returns propertiesGETGet the content of a document (and optional the properties)UPDATEUpdate the properties of an existing document
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CmisSender.CmisActionvalueOf(String name)Returns the enum constant of this type with the specified name.static CmisSender.CmisAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final CmisSender.CmisAction CREATE
Create a document
-
DELETE
public static final CmisSender.CmisAction DELETE
Delete a document
-
GET
public static final CmisSender.CmisAction GET
Get the content of a document (and optional the properties)
-
FIND
public static final CmisSender.CmisAction FIND
Perform a query that returns properties
-
UPDATE
public static final CmisSender.CmisAction UPDATE
Update the properties of an existing document
-
FETCH
public static final CmisSender.CmisAction FETCH
Get the (meta)data of a folder or document
-
DYNAMIC
public static final CmisSender.CmisAction DYNAMIC
Determine action based on the incoming CmisEvent
-
-
Method Detail
-
values
public static CmisSender.CmisAction[] 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 (CmisSender.CmisAction c : CmisSender.CmisAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CmisSender.CmisAction 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 nameNullPointerException- if the argument is null
-
-