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 void
create(JumpServerEntity entity)
Adds an instance ofJumpServerEntity
to the persistent store.void
create(Collection<? extends JumpServerEntity> entities)
Creates a collection ofJumpServerEntity
and adds it to the persistent store.JumpServerGroupEntityDao
getJumpServerGroupEntityDao()
Gets reference tojumpServerGroupEntityDao
.JumpServerEntity
load(Long id)
Loads an instance ofJumpServerEntity
from the persistent store.List<JumpServerEntity>
loadAll()
Loads all instances ofJumpServerEntity
from the persistent store.JumpServerEntity
newJumpServerEntity()
Creates an instance ofJumpServerEntity
.List<JumpServerEntity>
query(String queryString, Parameter[] parameters)
Query ofJumpServerEntity
from the persistent store.List<JumpServerEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofJumpServerEntity
from the persistent store.void
remove(JumpServerEntity entity)
Removes an instance ofJumpServerEntity
from the persistent store.void
remove(Long id)
Removes an instance ofJumpServerEntity
from the persistent store.void
remove(Collection<? extends JumpServerEntity> entities)
Removes a collection ofJumpServerEntity
from the persistent store.void
setJumpServerGroupEntityDao(JumpServerGroupEntityDao jumpServerGroupEntityDao)
Sets reference tojumpServerGroupEntityDao
.void
update(JumpServerEntity entity)
Updates an instance ofJumpServerEntity
at the persistent store.void
update(Collection<? extends JumpServerEntity> entities)
Updates a collection ofJumpServerEntity
in 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:
newJumpServerEntity
in interfaceJumpServerEntityDao
-
load
public JumpServerEntity load(Long id)
Loads an instance ofJumpServerEntity
from the persistent store.- Specified by:
load
in interfaceJumpServerEntityDao
-
loadAll
public List<JumpServerEntity> loadAll()
Loads all instances ofJumpServerEntity
from the persistent store.- Specified by:
loadAll
in interfaceJumpServerEntityDao
-
create
public void create(JumpServerEntity entity)
Adds an instance ofJumpServerEntity
to the persistent store.- Specified by:
create
in interfaceJumpServerEntityDao
-
update
public void update(JumpServerEntity entity)
Updates an instance ofJumpServerEntity
at the persistent store.- Specified by:
update
in interfaceJumpServerEntityDao
-
remove
public void remove(JumpServerEntity entity)
Removes an instance ofJumpServerEntity
from the persistent store.- Specified by:
remove
in interfaceJumpServerEntityDao
-
create
public void create(Collection<? extends JumpServerEntity> entities)
Creates a collection ofJumpServerEntity
and adds it to the persistent store.- Specified by:
create
in interfaceJumpServerEntityDao
-
update
public void update(Collection<? extends JumpServerEntity> entities)
Updates a collection ofJumpServerEntity
in the persistent store.- Specified by:
update
in interfaceJumpServerEntityDao
-
remove
public void remove(Collection<? extends JumpServerEntity> entities)
Removes a collection ofJumpServerEntity
from the persistent store.- Specified by:
remove
in interfaceJumpServerEntityDao
-
remove
public void remove(Long id)
Removes an instance ofJumpServerEntity
from the persistent store.- Specified by:
remove
in interfaceJumpServerEntityDao
-
query
public List<JumpServerEntity> query(String queryString, Parameter[] parameters)
Query ofJumpServerEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceJumpServerEntityDao
-
query
public List<JumpServerEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofJumpServerEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
query
in interfaceJumpServerEntityDao
-
-