Package com.tcs.hrr.domain

Examples of com.tcs.hrr.domain.Role


  }

  public Role findById(java.lang.Integer id) {
    log.debug("getting Role instance with id: " + id);
    try {
      Role instance = (Role) getHibernateTemplate().get(
          "com.tcs.hrr.domain.Role", id);
      return instance;
    } catch (RuntimeException re) {
      log.error("get failed", re);
      throw re;
View Full Code Here


  }

  public Role merge(Role detachedInstance) {
    log.debug("merging Role instance");
    try {
      Role result = (Role) getHibernateTemplate().merge(detachedInstance);
      log.debug("merge successful");
      return result;
    } catch (RuntimeException re) {
      log.error("merge failed", re);
      throw re;
View Full Code Here

TOP

Related Classes of com.tcs.hrr.domain.Role

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.