| Enum Constant and Description |
|---|
ACCESS
System access, like channels, passwords (transaction password, pin, etc), web service clients, etc
|
BANKING
Account configuration, account history, payments, invoices, etc
|
CONTENT_MANAGEMENT
Content pages, themes, translations, images, documents
|
GENERAL
General parts that don't fit in other modules
|
MARKETPLACE
Ads, Delivery Method, Ad Categories, Import/Export Category
|
MESSAGING
Cyclos internal messaging
|
MOBILE
Mobile application functions (payment, account info, contacts, etc)
|
SYSTEM
System configuration, languages, custom fields, reports
|
USERS
Products, groups, users, contacts, records, dashboard, references, etc
|
| Modifier and Type | Method and Description |
|---|---|
static Module |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Module[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Module ACCESS
public static final Module BANKING
public static final Module CONTENT_MANAGEMENT
public static final Module GENERAL
public static final Module MARKETPLACE
public static final Module MESSAGING
public static final Module MOBILE
public static final Module SYSTEM
public static final Module USERS
public static Module[] values()
for (Module c : Module.values()) System.out.println(c);
public static Module 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