public enum MobileOperation extends java.lang.Enum<MobileOperation>
| Enum Constant and Description |
|---|
ACCEPT_TICKET
Accepts a generated QR code for performing a payment
|
CARD_FORMAT |
CARD_INITIALIZE |
CARD_PERSONALIZE
If the logged user can personalize cards for other users (as manager or member)
|
CARD_PERSONALIZE_SELF
If the logged user can personalize cards for himself or its operators (only as member).
|
CARD_READ |
CREATE_TICKET
Generate a QR Code for receiving a payment
|
MAKE_SYSTEM_PAYMENT |
MAKE_USER_PAYMENT |
MANAGE_CONTACTS |
MANAGE_OPERATORS
If the logged user can manage operators (i.e.
|
MANAGE_PASSWORDS
If the logged user can manage his passwords
|
MAP_DIRECTORY |
NFC_ACTIVATE
Activate the phone to allow make payments using it as identifier.
|
NFC_DEACTIVATE
Deactivate the phone not allowing making payments.
|
PAYMENT_REQUESTS
If the logged user can search and view payment requests
|
POS_ASSIGN
A.k.a access client assign
|
POS_UNASSIGN
A.k.a access client unassigns
|
RECEIVE_PAYMENT |
REDEEM_VOUCHER |
REGISTER_USERS_AS_MANAGER
If the logged user (user manager) can register other members
|
REGISTER_USERS_AS_MEMBER
If the logged user or POS owner can register other users (member/broker) as member (member/operator not broker).
|
USERS_SEARCH |
VIEW_ACCOUNT_INFORMATION |
VIEW_USER_PROFILE |
VOUCHERS |
| Modifier and Type | Method and Description |
|---|---|
static MobileOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MobileOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileOperation VIEW_USER_PROFILE
public static final MobileOperation VIEW_ACCOUNT_INFORMATION
public static final MobileOperation MAKE_USER_PAYMENT
public static final MobileOperation MAKE_SYSTEM_PAYMENT
public static final MobileOperation RECEIVE_PAYMENT
public static final MobileOperation CREATE_TICKET
public static final MobileOperation VOUCHERS
public static final MobileOperation REDEEM_VOUCHER
public static final MobileOperation MANAGE_CONTACTS
public static final MobileOperation USERS_SEARCH
public static final MobileOperation MAP_DIRECTORY
public static final MobileOperation NFC_ACTIVATE
public static final MobileOperation NFC_DEACTIVATE
public static final MobileOperation POS_ASSIGN
public static final MobileOperation POS_UNASSIGN
public static final MobileOperation CARD_INITIALIZE
public static final MobileOperation CARD_PERSONALIZE
public static final MobileOperation CARD_PERSONALIZE_SELF
public static final MobileOperation CARD_READ
public static final MobileOperation CARD_FORMAT
public static final MobileOperation ACCEPT_TICKET
public static final MobileOperation MANAGE_OPERATORS
public static final MobileOperation REGISTER_USERS_AS_MEMBER
public static final MobileOperation REGISTER_USERS_AS_MANAGER
public static final MobileOperation PAYMENT_REQUESTS
public static final MobileOperation MANAGE_PASSWORDS
public static MobileOperation[] values()
for (MobileOperation c : MobileOperation.values()) System.out.println(c);
public static MobileOperation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null