Package de.iritgo.aktera.authentication.defaultauth.entity

Examples of de.iritgo.aktera.authentication.defaultauth.entity.AkteraGroupEntry


  @Override
  protected void execute(UIRequest request, UIResponse response, String[] ids) throws UIControllerException
  {
    for (String id : ids)
    {
      AkteraGroupEntry entry = userDAO.findAkteraGroupEntryById(NumberTools.toInt(id, - 1));
      userDAO.deleteAkteraGroupEntry(entry);
    }
    permissionManager.clear();
  }
View Full Code Here


  }

  @Override
  protected void execute(UIRequest request, UIResponse response, String id) throws UIControllerException
  {
    AkteraGroupEntry entry = userDAO.findAkteraGroupEntryById(NumberTools.toInt(id, - 1));
    userDAO.moveDownAkteraGroupEntry(entry);
  }
View Full Code Here

  }

  @Override
  protected void execute(UIRequest request, UIResponse response, String id) throws UIControllerException
  {
    AkteraGroupEntry entry = userDAO.findAkteraGroupEntryById(NumberTools.toInt(id, - 1));
    userDAO.moveUpAkteraGroupEntry(entry);
  }
View Full Code Here

TOP

Related Classes of de.iritgo.aktera.authentication.defaultauth.entity.AkteraGroupEntry

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.