package com.tcs.hrr.dao;
import java.util.Date;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.springframework.context.ApplicationContext;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import com.tcs.hrr.domain.InterviewTrack;
/**
* A data access object (DAO) providing persistence and search support for
* InterviewTrack entities. Transaction control of the save(), update() and
* delete() operations can directly support Spring container-managed
* transactions or they can be augmented to handle user-managed Spring
* transactions. Each of these methods provides additional information for how
* to configure it for the desired type of transaction control.
*
* @see com.tcs.hrr.domain.InterviewTrack
* @author MyEclipse Persistence Tools
*/
public class InterviewTrackDAO extends HibernateDaoSupport {
private static final Log log = LogFactory.getLog(InterviewTrackDAO.class);
// property constants
public static final String INTERVIEW_STATUS = "interviewStatus";
public static final String FEEDBACK = "feedback";
public static final String INTERVIEWER = "interviewer";
public static final String INTERVIEWER_DATE = "interviewerDate";
public static final String ACTIVE_FLAG = "activeFlag";
public static final String REMARKS = "remarks";
public static final String CRAETE_BY = "craeteBy";
public static final String UPDATE_BY = "updateBy";
protected void initDao() {
// do nothing
}
public void save(InterviewTrack transientInstance) {
log.debug("saving InterviewTrack instance");
try {
getHibernateTemplate().save(transientInstance);
log.debug("save successful");
} catch (RuntimeException re) {
log.error("save failed", re);
throw re;
}
}
public void delete(InterviewTrack persistentInstance) {
log.debug("deleting InterviewTrack instance");
try {
getHibernateTemplate().delete(persistentInstance);
log.debug("delete successful");
} catch (RuntimeException re) {
log.error("delete failed", re);
throw re;
}
}
public InterviewTrack findById(java.lang.Integer id) {
log.debug("getting InterviewTrack instance with id: " + id);
try {
InterviewTrack instance = (InterviewTrack) getHibernateTemplate()
.get("com.tcs.hrr.domain.InterviewTrack", id);
return instance;
} catch (RuntimeException re) {
log.error("get failed", re);
throw re;
}
}
public List findByExample(InterviewTrack instance) {
log.debug("finding InterviewTrack instance by example");
try {
List results = getHibernateTemplate().findByExample(instance);
log.debug("find by example successful, result size: "
+ results.size());
return results;
} catch (RuntimeException re) {
log.error("find by example failed", re);
throw re;
}
}
public List findByProperty(String propertyName, Object value) {
log.debug("finding InterviewTrack instance with property: "
+ propertyName + ", value: " + value);
try {
String queryString = "from InterviewTrack as model where model."
+ propertyName + "= ?";
return getHibernateTemplate().find(queryString, value);
} catch (RuntimeException re) {
log.error("find by property name failed", re);
throw re;
}
}
public List findByInterviewStatus(Object interviewStatus) {
return findByProperty(INTERVIEW_STATUS, interviewStatus);
}
public List findByFeedback(Object feedback) {
return findByProperty(FEEDBACK, feedback);
}
public List findByInterviewer(Object interviewer) {
return findByProperty(INTERVIEWER, interviewer);
}
public List findByInterviewerDate(Object interviewerDate) {
return findByProperty(INTERVIEWER_DATE, interviewerDate);
}
public List findByActiveFlag(Object activeFlag) {
return findByProperty(ACTIVE_FLAG, activeFlag);
}
public List findByRemarks(Object remarks) {
return findByProperty(REMARKS, remarks);
}
public List findByCraeteBy(Object craeteBy) {
return findByProperty(CRAETE_BY, craeteBy);
}
public List findByUpdateBy(Object updateBy) {
return findByProperty(UPDATE_BY, updateBy);
}
public List findAll() {
log.debug("finding all InterviewTrack instances");
try {
String queryString = "from InterviewTrack";
return getHibernateTemplate().find(queryString);
} catch (RuntimeException re) {
log.error("find all failed", re);
throw re;
}
}
public InterviewTrack merge(InterviewTrack detachedInstance) {
log.debug("merging InterviewTrack instance");
try {
InterviewTrack result = (InterviewTrack) getHibernateTemplate()
.merge(detachedInstance);
log.debug("merge successful");
return result;
} catch (RuntimeException re) {
log.error("merge failed", re);
throw re;
}
}
public void attachDirty(InterviewTrack instance) {
log.debug("attaching dirty InterviewTrack instance");
try {
getHibernateTemplate().saveOrUpdate(instance);
log.debug("attach successful");
} catch (RuntimeException re) {
log.error("attach failed", re);
throw re;
}
}
public void attachClean(InterviewTrack instance) {
log.debug("attaching clean InterviewTrack instance");
try {
getHibernateTemplate().lock(instance, LockMode.NONE);
log.debug("attach successful");
} catch (RuntimeException re) {
log.error("attach failed", re);
throw re;
}
}
public static InterviewTrackDAO getFromApplicationContext(
ApplicationContext ctx) {
return (InterviewTrackDAO) ctx.getBean("InterviewTrackDAO");
}
}