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 void
create(EntryPointIconEntity entity)
Adds an instance ofEntryPointIconEntity
to the persistent store.void
create(Collection<? extends EntryPointIconEntity> entities)
Creates a collection ofEntryPointIconEntity
and adds it to the persistent store.EntryPointIconEntity
load(Long id)
Loads an instance ofEntryPointIconEntity
from the persistent store.List<EntryPointIconEntity>
loadAll()
Loads all instances ofEntryPointIconEntity
from the persistent store.EntryPointIconEntity
newEntryPointIconEntity()
Creates an instance ofEntryPointIconEntity
.List<EntryPointIconEntity>
query(String queryString, Parameter[] parameters)
Query ofEntryPointIconEntity
from the persistent store.List<EntryPointIconEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofEntryPointIconEntity
from the persistent store.void
remove(EntryPointIconEntity entity)
Removes an instance ofEntryPointIconEntity
from the persistent store.void
remove(Long id)
Removes an instance ofEntryPointIconEntity
from the persistent store.void
remove(Collection<? extends EntryPointIconEntity> entities)
Removes a collection ofEntryPointIconEntity
from the persistent store.void
update(EntryPointIconEntity entity)
Updates an instance ofEntryPointIconEntity
at the persistent store.void
update(Collection<? extends EntryPointIconEntity> entities)
Updates a collection ofEntryPointIconEntity
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
-
newEntryPointIconEntity
public EntryPointIconEntity newEntryPointIconEntity()
Creates an instance ofEntryPointIconEntity
.- Specified by:
newEntryPointIconEntity
in interfaceEntryPointIconEntityDao
-
load
public EntryPointIconEntity load(Long id)
Loads an instance ofEntryPointIconEntity
from the persistent store.- Specified by:
load
in interfaceEntryPointIconEntityDao
-
loadAll
public List<EntryPointIconEntity> loadAll()
Loads all instances ofEntryPointIconEntity
from the persistent store.- Specified by:
loadAll
in interfaceEntryPointIconEntityDao
-
create
public void create(EntryPointIconEntity entity)
Adds an instance ofEntryPointIconEntity
to the persistent store.- Specified by:
create
in interfaceEntryPointIconEntityDao
-
update
public void update(EntryPointIconEntity entity)
Updates an instance ofEntryPointIconEntity
at the persistent store.- Specified by:
update
in interfaceEntryPointIconEntityDao
-
remove
public void remove(EntryPointIconEntity entity)
Removes an instance ofEntryPointIconEntity
from the persistent store.- Specified by:
remove
in interfaceEntryPointIconEntityDao
-
create
public void create(Collection<? extends EntryPointIconEntity> entities)
Creates a collection ofEntryPointIconEntity
and adds it to the persistent store.- Specified by:
create
in interfaceEntryPointIconEntityDao
-
update
public void update(Collection<? extends EntryPointIconEntity> entities)
Updates a collection ofEntryPointIconEntity
in the persistent store.- Specified by:
update
in interfaceEntryPointIconEntityDao
-
remove
public void remove(Collection<? extends EntryPointIconEntity> entities)
Removes a collection ofEntryPointIconEntity
from the persistent store.- Specified by:
remove
in interfaceEntryPointIconEntityDao
-
remove
public void remove(Long id)
Removes an instance ofEntryPointIconEntity
from the persistent store.- Specified by:
remove
in interfaceEntryPointIconEntityDao
-
query
public List<EntryPointIconEntity> query(String queryString, Parameter[] parameters)
Query ofEntryPointIconEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceEntryPointIconEntityDao
-
query
public List<EntryPointIconEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofEntryPointIconEntity
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 interfaceEntryPointIconEntityDao
-
-