public enum EventOrigin extends Enum<EventOrigin>
| Enum Constant and Description |
|---|
ASPSP
Event generated by the request from the ASPSP.
|
ASPSP_PSU_INTERFACE
Event generated by the request from the ASPSP PSU interface.
|
TPP
Event generated by the TPP request to XS2A.
|
XS2A_INTERNAL
Internal XS2A event.
|
| Modifier and Type | Method and Description |
|---|---|
static EventOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventOrigin ASPSP
public static final EventOrigin TPP
public static final EventOrigin ASPSP_PSU_INTERFACE
public static final EventOrigin XS2A_INTERNAL
public static EventOrigin[] values()
for (EventOrigin c : EventOrigin.values()) System.out.println(c);
public static EventOrigin 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 © 2019. All rights reserved.