Package org.jbpm.pvm.internal.identity.cmd

Examples of org.jbpm.pvm.internal.identity.cmd.DeleteGroupCmd


  public List<Group> findGroupsByUserAndGroupType(String userId, String groupType) {
    return commandService.execute(new FindGroupsCmd(userId, groupType));
  }

  public void deleteGroup(String groupId) {
    commandService.execute(new DeleteGroupCmd(groupId));
  }
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.identity.cmd.DeleteGroupCmd

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.