Package com.soffid.iam.model
Class JumpServerEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.JumpServerEntityDaoBase
-
- All Implemented Interfaces:
JumpServerEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
JumpServerEntityDaoImpl
public abstract class JumpServerEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements JumpServerEntityDao
DAO Base for Entity JumpServerEntity
-
-
Constructor Summary
Constructors Constructor Description JumpServerEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(JumpServerEntity entity)Adds an instance ofJumpServerEntityto the persistent store.voidcreate(Collection<? extends JumpServerEntity> entities)Creates a collection ofJumpServerEntityand adds it to the persistent store.JumpServerGroupEntityDaogetJumpServerGroupEntityDao()Gets reference tojumpServerGroupEntityDao.JumpServerEntityload(Long id)Loads an instance ofJumpServerEntityfrom the persistent store.List<JumpServerEntity>loadAll()Loads all instances ofJumpServerEntityfrom the persistent store.JumpServerEntitynewJumpServerEntity()Creates an instance ofJumpServerEntity.List<JumpServerEntity>query(String queryString, Parameter[] parameters)Query ofJumpServerEntityfrom the persistent store.List<JumpServerEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofJumpServerEntityfrom the persistent store.voidremove(JumpServerEntity entity)Removes an instance ofJumpServerEntityfrom the persistent store.voidremove(Long id)Removes an instance ofJumpServerEntityfrom the persistent store.voidremove(Collection<? extends JumpServerEntity> entities)Removes a collection ofJumpServerEntityfrom the persistent store.voidsetJumpServerGroupEntityDao(JumpServerGroupEntityDao jumpServerGroupEntityDao)Sets reference tojumpServerGroupEntityDao.voidupdate(JumpServerEntity entity)Updates an instance ofJumpServerEntityat the persistent store.voidupdate(Collection<? extends JumpServerEntity> entities)Updates a collection ofJumpServerEntityin the persistent store.-
Methods inherited from class org.springframework.orm.hibernate3.support.HibernateDaoSupport
checkDaoConfig, closeSessionIfNecessary, convertHibernateAccessException, createHibernateTemplate, getHibernateTemplate, getSession, getSession, getSessionFactory, releaseSession, setHibernateTemplate, setSessionFactory
-
-
-
-
Method Detail
-
setJumpServerGroupEntityDao
public void setJumpServerGroupEntityDao(JumpServerGroupEntityDao jumpServerGroupEntityDao)
Sets reference tojumpServerGroupEntityDao.
-
getJumpServerGroupEntityDao
public JumpServerGroupEntityDao getJumpServerGroupEntityDao()
Gets reference tojumpServerGroupEntityDao.
-
newJumpServerEntity
public JumpServerEntity newJumpServerEntity()
Creates an instance ofJumpServerEntity.- Specified by:
newJumpServerEntityin interfaceJumpServerEntityDao
-
load
public JumpServerEntity load(Long id)
Loads an instance ofJumpServerEntityfrom the persistent store.- Specified by:
loadin interfaceJumpServerEntityDao
-
loadAll
public List<JumpServerEntity> loadAll()
Loads all instances ofJumpServerEntityfrom the persistent store.- Specified by:
loadAllin interfaceJumpServerEntityDao
-
create
public void create(JumpServerEntity entity)
Adds an instance ofJumpServerEntityto the persistent store.- Specified by:
createin interfaceJumpServerEntityDao
-
update
public void update(JumpServerEntity entity)
Updates an instance ofJumpServerEntityat the persistent store.- Specified by:
updatein interfaceJumpServerEntityDao
-
remove
public void remove(JumpServerEntity entity)
Removes an instance ofJumpServerEntityfrom the persistent store.- Specified by:
removein interfaceJumpServerEntityDao
-
create
public void create(Collection<? extends JumpServerEntity> entities)
Creates a collection ofJumpServerEntityand adds it to the persistent store.- Specified by:
createin interfaceJumpServerEntityDao
-
update
public void update(Collection<? extends JumpServerEntity> entities)
Updates a collection ofJumpServerEntityin the persistent store.- Specified by:
updatein interfaceJumpServerEntityDao
-
remove
public void remove(Collection<? extends JumpServerEntity> entities)
Removes a collection ofJumpServerEntityfrom the persistent store.- Specified by:
removein interfaceJumpServerEntityDao
-
remove
public void remove(Long id)
Removes an instance ofJumpServerEntityfrom the persistent store.- Specified by:
removein interfaceJumpServerEntityDao
-
query
public List<JumpServerEntity> query(String queryString, Parameter[] parameters)
Query ofJumpServerEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceJumpServerEntityDao
-
query
public List<JumpServerEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofJumpServerEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceJumpServerEntityDao
-
-