Enum 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.

    • Method Detail

      • values

        public static DistributionRequestType[] 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 (DistributionRequestType c : DistributionRequestType.values())
            System.out.println(c);
        
        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