Package com.soffid.iam.model
Class EntryPointIconEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.EntryPointIconEntityDaoBase
-
- All Implemented Interfaces:
EntryPointIconEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
EntryPointIconEntityDaoImpl
public abstract class EntryPointIconEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements EntryPointIconEntityDao
DAO Base for Entity EntryPointIconEntity
-
-
Constructor Summary
Constructors Constructor Description EntryPointIconEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(EntryPointIconEntity entity)Adds an instance ofEntryPointIconEntityto the persistent store.voidcreate(Collection<? extends EntryPointIconEntity> entities)Creates a collection ofEntryPointIconEntityand adds it to the persistent store.EntryPointIconEntityload(Long id)Loads an instance ofEntryPointIconEntityfrom the persistent store.List<EntryPointIconEntity>loadAll()Loads all instances ofEntryPointIconEntityfrom the persistent store.EntryPointIconEntitynewEntryPointIconEntity()Creates an instance ofEntryPointIconEntity.List<EntryPointIconEntity>query(String queryString, Parameter[] parameters)Query ofEntryPointIconEntityfrom the persistent store.List<EntryPointIconEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofEntryPointIconEntityfrom the persistent store.voidremove(EntryPointIconEntity entity)Removes an instance ofEntryPointIconEntityfrom the persistent store.voidremove(Long id)Removes an instance ofEntryPointIconEntityfrom the persistent store.voidremove(Collection<? extends EntryPointIconEntity> entities)Removes a collection ofEntryPointIconEntityfrom the persistent store.voidupdate(EntryPointIconEntity entity)Updates an instance ofEntryPointIconEntityat the persistent store.voidupdate(Collection<? extends EntryPointIconEntity> entities)Updates a collection ofEntryPointIconEntityin 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
-
newEntryPointIconEntity
public EntryPointIconEntity newEntryPointIconEntity()
Creates an instance ofEntryPointIconEntity.- Specified by:
newEntryPointIconEntityin interfaceEntryPointIconEntityDao
-
load
public EntryPointIconEntity load(Long id)
Loads an instance ofEntryPointIconEntityfrom the persistent store.- Specified by:
loadin interfaceEntryPointIconEntityDao
-
loadAll
public List<EntryPointIconEntity> loadAll()
Loads all instances ofEntryPointIconEntityfrom the persistent store.- Specified by:
loadAllin interfaceEntryPointIconEntityDao
-
create
public void create(EntryPointIconEntity entity)
Adds an instance ofEntryPointIconEntityto the persistent store.- Specified by:
createin interfaceEntryPointIconEntityDao
-
update
public void update(EntryPointIconEntity entity)
Updates an instance ofEntryPointIconEntityat the persistent store.- Specified by:
updatein interfaceEntryPointIconEntityDao
-
remove
public void remove(EntryPointIconEntity entity)
Removes an instance ofEntryPointIconEntityfrom the persistent store.- Specified by:
removein interfaceEntryPointIconEntityDao
-
create
public void create(Collection<? extends EntryPointIconEntity> entities)
Creates a collection ofEntryPointIconEntityand adds it to the persistent store.- Specified by:
createin interfaceEntryPointIconEntityDao
-
update
public void update(Collection<? extends EntryPointIconEntity> entities)
Updates a collection ofEntryPointIconEntityin the persistent store.- Specified by:
updatein interfaceEntryPointIconEntityDao
-
remove
public void remove(Collection<? extends EntryPointIconEntity> entities)
Removes a collection ofEntryPointIconEntityfrom the persistent store.- Specified by:
removein interfaceEntryPointIconEntityDao
-
remove
public void remove(Long id)
Removes an instance ofEntryPointIconEntityfrom the persistent store.- Specified by:
removein interfaceEntryPointIconEntityDao
-
query
public List<EntryPointIconEntity> query(String queryString, Parameter[] parameters)
Query ofEntryPointIconEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceEntryPointIconEntityDao
-
query
public List<EntryPointIconEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofEntryPointIconEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceEntryPointIconEntityDao
-
-