Enum DistributionRequestType

java.lang.Object
java.lang.Enum<DistributionRequestType>
org.apache.sling.distribution.DistributionRequestType
All Implemented Interfaces:
Serializable, Comparable<DistributionRequestType>

@ProviderType public enum DistributionRequestType extends Enum<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 Details

  • Method Details

    • values

      public static DistributionRequestType[] 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

      public static DistributionRequestType 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
    • fromName

      @Nullable public static DistributionRequestType fromName(@Nullable String n)
      Creates an action type for the given name. if the name cannot be mapped to a enum type or if it's null, null is returned.
      Parameters:
      n - the name
      Returns:
      the type or null