Package org.apache.sling.distribution
Enum DistributionRequestType
- All Implemented Interfaces:
Serializable
,Comparable<DistributionRequestType>
The request type tied to a specific DistributionRequest
, used to decide how
the distribution content should be aggregated.
ADD
requests can for example lead to the creation of a package of resources to be persisted on the target instance.
DELETE
requests can for example lead to the creation of a "command package" to be sent to the target instance
to actually remove the resources specified in DistributionRequest.getPaths()
.
PULL
requests can for example lead to the creation of a "command package" that will trigger fetching of content
from the target instance.
INVALIDATE
requests can for example lead to the cache invalidation without importing content.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAction type for adding contentAction type for deleting contentAction type for invalidating contentAction type for pulling contentAction type for testing connection. -
Method Summary
Modifier and TypeMethodDescriptionstatic DistributionRequestType
Creates an action type for the given name.static DistributionRequestType
Returns the enum constant of this type with the specified name.static DistributionRequestType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ADD
Action type for adding content -
DELETE
Action type for deleting content -
PULL
Action type for pulling content -
INVALIDATE
Action type for invalidating content -
TEST
Action type for testing connection. No content is modified.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
fromName
Creates an action type for the given name. if the name cannot be mapped to a enum type or if it'snull
,null
is returned.- Parameters:
n
- the name- Returns:
- the type or
null
-