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