Enum Module

    • Enum Constant Detail

      • ACCESS

        public static final Module ACCESS
        System access, like channels, passwords (transaction password, pin, etc), web service clients, etc
      • APP

        public static final Module APP
        New frontend
      • BANKING

        public static final Module BANKING
        Account configuration, account history, payments, invoices, etc
      • CONTENT_MANAGEMENT

        public static final Module CONTENT_MANAGEMENT
        Content pages, themes, translations, images, documents
      • GENERAL

        public static final Module GENERAL
        General parts that don't fit in other modules
      • MARKETPLACE

        public static final Module MARKETPLACE
        Ads, Delivery Method, Ad Categories, Import/Export Category
      • MESSAGING

        public static final Module MESSAGING
        Cyclos internal messaging
      • MOBILE

        public static final Module MOBILE
        Mobile application functions (payment, account info, contacts, etc)
      • SYSTEM

        public static final Module SYSTEM
        System configuration, languages, custom fields, reports
      • USERS

        public static final Module USERS
        Products, groups, users, contacts, records, dashboard, references, etc
    • Method Detail

      • values

        public static Module[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Module c : Module.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Module valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null