Package org.jabusuite.core.users.session

Examples of org.jabusuite.core.users.session.JbsUserGroupsRemote.createGroup()


            JbsUserGroupsRemote jbsUserGroups = (JbsUserGroupsRemote) ClientTools.getRemoteBean(JbsUserGroupsRemote.class);

            super.doSave();
            if (this.getDlgState() == DlgState.dsInsert) {
                System.out.println("Adding new entity");
                jbsUserGroups.createGroup(this.getUserGroup());
            } else if (this.getDlgState() == DlgState.dsEdit) {
                System.out.println("Saving existing entity " + this.getUserGroup().getId() + ".");
                jbsUserGroups.updateDataset(this.getUserGroup());
            }
            System.out.println("Entity saved.");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.