Examples of splitUserSet()


Examples of evolaris.framework.um.business.UserSetManager.splitUserSet()

    UserSetSplitForm splitForm = (UserSetSplitForm)form;
    LOGGER.info("about to split: users/set="+splitForm.getCount());
    UserSetManager userSetMgm = new UserSetManager(locale, session);
    long id = splitForm.getUserSetId();
    UserSet sourceSet = userSetMgm.getUserSet(id);
    List <UserSet> result = userSetMgm.splitUserSet(sourceSet, splitForm.getCount());
    for (UserSet s : result) {
      userSetMgm.createUserSet(s);
    }
    return mapping.findForward("created");
  }
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.