public enum GrpcAuthType extends Enum<GrpcAuthType>
| Enum Constant and Description |
|---|
GOOGLE
Google OAuth2 token auth.
|
JWT
Custom JSON Web Token with HmacSHA algorithms implementation
|
NONE
No advanced authentication method
|
| Modifier and Type | Method and Description |
|---|---|
static GrpcAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrpcAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrpcAuthType NONE
public static final GrpcAuthType GOOGLE
public static final GrpcAuthType JWT
public static GrpcAuthType[] values()
for (GrpcAuthType c : GrpcAuthType.values()) System.out.println(c);
public static GrpcAuthType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullApache Camel