Examples of cloneUserProfile()


Examples of org.opentides.bean.user.BaseUser.cloneUserProfile()

    try {
      session = HibernateUtil.getSessionFactory().openSession();
      Object object = session.load(log.getEntityClass(), log.getEntityId());
      log.setObject(object);
            BaseUser user = (BaseUser)session.load(BaseUser.class, log.getUserId());
            log.setUser(user.cloneUserProfile());
    } catch (Throwable e) {
      _log.error(e, e);
    } finally {
      if (session!=null) session.close();
    }
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.