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

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


  public String createGroup(String groupName, String groupType, String parentGroupId) {
    return commandService.execute(new CreateGroupCmd(groupName, groupType, parentGroupId));
  }

  public Group findGroupById(String groupId) {
    return commandService.execute(new FindGroupCmd(groupId));
  }
View Full Code Here

TOP

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

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.