java.lang.Object
java.lang.Enum<OAuthFlow>
com.sap.cloud.sdk.services.openapi.apiclient.auth.OAuthFlow
All Implemented Interfaces:
Serializable, Comparable<OAuthFlow>, Constable

public enum OAuthFlow extends Enum<OAuthFlow>
Supported OAuth flows to authenticate at the REST API
  • Enum Constant Details

    • accessCode

      public static final OAuthFlow accessCode
      Authenticate with an access code
    • implicit

      public static final OAuthFlow implicit
      Authenticate implicitly
    • password

      public static final OAuthFlow password
      Authenticate with password
    • application

      public static final OAuthFlow application
      Authenticate as application
  • Method Details

    • values

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