Package com.tcs.hrr.domain

Examples of com.tcs.hrr.domain.Technology


  }

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


  }

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

TOP

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

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.