public enum OAuth2ConnectionType extends Enum<OAuth2ConnectionType>
| Enum Constant and Description |
|---|
OAUTH2_CLIENT
This connection type is given to all application links
that represent a connection from the OAuth2 client plugin.
|
OAUTH2_PROVIDER
This connection type is given to all application links
that represent a connection from the OAuth2 provider plugin.
|
| Modifier and Type | Method and Description |
|---|---|
static OAuth2ConnectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuth2ConnectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuth2ConnectionType OAUTH2_CLIENT
public static final OAuth2ConnectionType OAUTH2_PROVIDER
public static OAuth2ConnectionType[] values()
for (OAuth2ConnectionType c : OAuth2ConnectionType.values()) System.out.println(c);
public static OAuth2ConnectionType 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 nullCopyright © 2024 Atlassian. All rights reserved.