Package org.projectforge.user

Examples of org.projectforge.user.UserPrefDao


  {
    if (userPrefDO == null) {
      return null;
    }
    final TimesheetTemplateObject template = new TimesheetTemplateObject();
    final UserPrefDao userPrefDao = Registry.instance().getDao(UserPrefDao.class);
    final TimesheetDO timesheet = new TimesheetDO();
    userPrefDao.fillFromUserPrefParameters(userPrefDO, timesheet);
    template.setName(userPrefDO.getName());
    template.setDescription(timesheet.getDescription());
    template.setLocation(timesheet.getLocation());
    final UserObject user = PFUserDOConverter.getUserObject(timesheet.getUser());
    if (user != null) {
View Full Code Here

TOP

Related Classes of org.projectforge.user.UserPrefDao

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.