Examples of fillFromUserPrefParameters()


Examples of org.projectforge.user.UserPrefDao.fillFromUserPrefParameters()

      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
Copyright © 2018 www.massapi.com. 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.