public enum ConnectionUser extends Enum<ConnectionUser>
| Enum Constant and Description |
|---|
CONNECTION_AUTHORIZED_USER
Authorized user defined in the connection record.
|
INITIATING_USER
Indicates the user that initiated the request.
|
REQUEST_OWNER
Indicates the owner of the sdk request.
|
SDK_CURRENT_USER
Deprecated.
as of 22R3.4, replaced by
REQUEST_OWNER and INITIATING_USER. |
| Modifier and Type | Method and Description |
|---|---|
static ConnectionUser |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionUser[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionUser REQUEST_OWNER
public static final ConnectionUser INITIATING_USER
@Deprecated public static final ConnectionUser SDK_CURRENT_USER
REQUEST_OWNER and INITIATING_USER.public static final ConnectionUser CONNECTION_AUTHORIZED_USER
public static ConnectionUser[] values()
for (ConnectionUser c : ConnectionUser.values()) System.out.println(c);
public static ConnectionUser 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 © Veeva Systems 2017–2023. All rights reserved.