public enum AuthenticationMethod extends Enum<AuthenticationMethod> implements cn.herodotus.engine.assistant.core.definition.enums.BaseUiEnum<String>
Description: 客户端身份验证模式
| 枚举常量和说明 |
|---|
CLIENT_SECRET_BASIC
enum
|
CLIENT_SECRET_JWT |
CLIENT_SECRET_POST |
NONE |
PRIVATE_KEY_JWT |
| 限定符和类型 | 方法和说明 |
|---|---|
static AuthenticationMethod |
get(Integer index) |
String |
getDescription() |
static List<Map<String,Object>> |
getPreprocessedJsonStructure() |
String |
getValue() |
static AuthenticationMethod |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static AuthenticationMethod[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final AuthenticationMethod CLIENT_SECRET_BASIC
public static final AuthenticationMethod CLIENT_SECRET_POST
public static final AuthenticationMethod CLIENT_SECRET_JWT
public static final AuthenticationMethod PRIVATE_KEY_JWT
public static final AuthenticationMethod NONE
public static AuthenticationMethod[] values()
for (AuthenticationMethod c : AuthenticationMethod.values()) System.out.println(c);
public static AuthenticationMethod valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getDescription()
getDescription 在接口中 cn.herodotus.engine.assistant.core.definition.enums.EnumDescriptionpublic String getValue()
getValue 在接口中 cn.herodotus.engine.assistant.core.definition.enums.EnumValue<String>public static AuthenticationMethod get(Integer index)
Copyright © 2022. All rights reserved.