Package org.jabusuite.core.modules.session

Examples of org.jabusuite.core.modules.session.ModuleGroupsRemote


        protected void fillList() {
            try {
                this.setModules(new ArrayList<Module>());
                this.getModules().add(null);
               
                ModuleGroupsRemote groupManagement = (ModuleGroupsRemote) ClientTools.getRemoteBean(ModuleGroupsRemote.class);
                List groups = groupManagement.getAllModuleGroups(ClientGlobals.getUser(), ClientGlobals.getCompany());
                for (int i = 0; i < groups.size(); i++) {
                    addGroupModules((ModuleGroup) groups.get(i));
                }
            } catch (Exception e) {
                e.printStackTrace();
View Full Code Here


     * Fills the panel with the module-buttons
     *
     */
    protected void fillPanel() {
        try {
            ModuleGroupsRemote groupManagement = (ModuleGroupsRemote) ClientTools.getRemoteBean(ModuleGroupsRemote.class);
            List groups = groupManagement.getAllModuleGroups(ClientGlobals.getUser(), ClientGlobals.getCompany());
            for (int i = 0; i < groups.size(); i++) {
                addGroupModules((ModuleGroup) groups.get(i));
            }
        } catch (Exception e) {
            e.printStackTrace();
View Full Code Here

TOP

Related Classes of org.jabusuite.core.modules.session.ModuleGroupsRemote

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.