public enum ExtraAuthRequestParam extends Enum<ExtraAuthRequestParam>
AuthorizationRequest
Enum Constant and Description |
---|
PSU_ID
Users' (PSU) login credentials at ASPSP.
|
PSU_IP_ADDRESS
Users' (PSU) IP address.
|
PSU_IP_PORT
IP port of IP address between PSU and TPP
|
Modifier and Type | Method and Description |
---|---|
static ExtraAuthRequestParam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtraAuthRequestParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtraAuthRequestParam PSU_ID
public static final ExtraAuthRequestParam PSU_IP_ADDRESS
public static final ExtraAuthRequestParam PSU_IP_PORT
public static ExtraAuthRequestParam[] values()
for (ExtraAuthRequestParam c : ExtraAuthRequestParam.values()) System.out.println(c);
public static ExtraAuthRequestParam 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 © 2020. All rights reserved.