Package com.eastidea.qaforum.model

Examples of com.eastidea.qaforum.model.User


  public ArrayList<SelectItem> getQADictionary(){
    ArrayList<SelectItem> dictionary  = new ArrayList<SelectItem>();
   
    List<User> list = actorMaintDao.getAllQas();
   
    User user;
    Iterator i = list.iterator();
        while( i.hasNext() )
        {
          user = (User)i.next();
          dictionary.add( new SelectItem( user.getUserid().toString(),
              user.getEnglishName()));
        }
        return dictionary;
  }
View Full Code Here


  public ArrayList<SelectItem> getDevDictionary(){
    ArrayList<SelectItem> dictionary  = new ArrayList<SelectItem>();
   
    List<User> list = actorMaintDao.getAllDevs();
   
    User user;
    Iterator i = list.iterator();
        while( i.hasNext() )
        {
          user = (User)i.next();
          dictionary.add( new SelectItem( user.getUserid().toString(),
              user.getEnglishName()));
        }
        return dictionary;
  }
View Full Code Here


  @Begin(join=true)
  public void create() {
    myAct = "true";
    user = new User();
    departmentid = null;
    positionid = null;
 
View Full Code Here

TOP

Related Classes of com.eastidea.qaforum.model.User

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.