Enum Class LeaseEndpoints

java.lang.Object
java.lang.Enum<LeaseEndpoints>
org.springframework.vault.core.lease.LeaseEndpoints
All Implemented Interfaces:
Serializable, Comparable<LeaseEndpoints>, Constable

public enum LeaseEndpoints extends Enum<LeaseEndpoints>
Version-specific endpoint implementations that use either legacy or sys/leases endpoints.
Since:
2.1
Author:
Mark Paluch, Thomas Kåsene
See Also:
  • Enum Constant Details

    • Legacy

      public static final LeaseEndpoints Legacy
      Legacy endpoints prior to Vault 0.8 (/sys/renew,/sys/revoke).
    • Leases

      public static final LeaseEndpoints Leases
      Sys/lease endpoints for Vault 0.8 and higher (/sys/leases/…) that uses the /sys/leases/revoke endpoint when revoking leases.
      Since:
      2.3
    • LeasesRevokedByPrefix

      public static final LeaseEndpoints LeasesRevokedByPrefix
      Sys/lease endpoints for Vault 0.8 and higher (/sys/leases/…) that uses the /sys/leases/revoke-prefix/… endpoint when revoking leases.
      Since:
      2.3
  • Method Details

    • values

      public static LeaseEndpoints[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LeaseEndpoints valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null