}
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;