Package com.tcs.hrr.domain

Examples of com.tcs.hrr.domain.RequirementStatus


  }

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


  }

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

    return configLocations;
  }
 
  @Test
  public void testGetObjectByValue(){
    RequirementStatus status = (RequirementStatus)(dao.findByValue(Constant.REQUIREMENT_STATUS_OPEN).get(0));
    System.out.println(status.getValue()+status.getRequirementStatusId());
  }
View Full Code Here

TOP

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

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.