Package it.pdor.sicurezza.service

Examples of it.pdor.sicurezza.service.SicurezzaFacade


public class CodificaListaUtenti extends CodificaObjectStringAbs {

  @Override
  protected void popola() {
    SicurezzaFacade sicurezzaFacade = (SicurezzaFacade) BackingBeanUtility.trova("SicurezzaFacade");
    List<User> listUser = sicurezzaFacade.getUserList();
    Map<String, User> mappaUtenti = new TreeMap<String, User>();
    for (User currentUser : listUser)
      mappaUtenti.put(currentUser.getUserName(), currentUser);

    codifiche = new TreeMap<Object, String>((Comparator) new UserComparator(mappaUtenti));
View Full Code Here

TOP

Related Classes of it.pdor.sicurezza.service.SicurezzaFacade

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.