示例#1
0
  // BEGIN ACTION
  public String listGroup() throws Exception {
    this.groupList = groupService.findAll();

    setCantDoCrud(isUserNotMaker());

    writeAuditLog("Viewed group list.", form);

    return LIST;
  }
示例#2
0
  public String populateGroups() throws Exception {
    this.groupList = groupService.findAll();

    return SUCCESS;
  }