Package com.soffid.iam.model
Class HostPortEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.HostPortEntityDaoBase
-
- All Implemented Interfaces:
HostPortEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
HostPortEntityDaoImpl
public abstract class HostPortEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements HostPortEntityDao
DAO Base for Entity HostPortEntity
-
-
Constructor Summary
Constructors Constructor Description HostPortEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(HostPortEntity entity)Adds an instance ofHostPortEntityto the persistent store.voidcreate(Collection<? extends HostPortEntity> entities)Creates a collection ofHostPortEntityand adds it to the persistent store.HostEntityDaogetHostEntityDao()Gets reference tomaquinaEntityDao.HostPortEntityhostPortToEntity(com.soffid.iam.api.HostPort instance)Transforms fromHostPortobjectvoidhostPortToEntity(com.soffid.iam.api.HostPort source, HostPortEntity target, boolean copyIfNull)Copy data fromHostPortobjectList<HostPortEntity>hostPortToEntityList(Collection<com.soffid.iam.api.HostPort> instances)Transforms fromHostPortlistHostPortEntityload(Long id)Loads an instance ofHostPortEntityfrom the persistent store.List<HostPortEntity>loadAll()Loads all instances ofHostPortEntityfrom the persistent store.HostPortEntitynewHostPortEntity()Creates an instance ofHostPortEntity.List<HostPortEntity>query(String queryString, Parameter[] parameters)Query ofHostPortEntityfrom the persistent store.List<HostPortEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostPortEntityfrom the persistent store.voidremove(HostPortEntity entity)Removes an instance ofHostPortEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostPortEntityfrom the persistent store.voidremove(Collection<? extends HostPortEntity> entities)Removes a collection ofHostPortEntityfrom the persistent store.voidsetHostEntityDao(HostEntityDao maquinaEntityDao)Sets reference tomaquinaEntityDao.com.soffid.iam.api.HostPorttoHostPort(HostPortEntity entity)Transforms toHostPortobjectvoidtoHostPort(HostPortEntity source, com.soffid.iam.api.HostPort target)Copy data toHostPortobjectList<com.soffid.iam.api.HostPort>toHostPortList(Collection<HostPortEntity> instances)Transforms toHostPortlistvoidupdate(HostPortEntity entity)Updates an instance ofHostPortEntityat the persistent store.voidupdate(Collection<? extends HostPortEntity> entities)Updates a collection ofHostPortEntityin 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
-
setHostEntityDao
public void setHostEntityDao(HostEntityDao maquinaEntityDao)
Sets reference tomaquinaEntityDao.
-
getHostEntityDao
public HostEntityDao getHostEntityDao()
Gets reference tomaquinaEntityDao.
-
toHostPort
public void toHostPort(HostPortEntity source, com.soffid.iam.api.HostPort target)
Copy data toHostPortobject- Specified by:
toHostPortin interfaceHostPortEntityDao
-
toHostPort
public com.soffid.iam.api.HostPort toHostPort(HostPortEntity entity)
Transforms toHostPortobject- Specified by:
toHostPortin interfaceHostPortEntityDao
-
toHostPortList
public List<com.soffid.iam.api.HostPort> toHostPortList(Collection<HostPortEntity> instances)
Transforms toHostPortlist- Specified by:
toHostPortListin interfaceHostPortEntityDao
-
hostPortToEntity
public void hostPortToEntity(com.soffid.iam.api.HostPort source, HostPortEntity target, boolean copyIfNull)Copy data fromHostPortobject- Specified by:
hostPortToEntityin interfaceHostPortEntityDao
-
hostPortToEntity
public HostPortEntity hostPortToEntity(com.soffid.iam.api.HostPort instance)
Transforms fromHostPortobject- Specified by:
hostPortToEntityin interfaceHostPortEntityDao
-
hostPortToEntityList
public List<HostPortEntity> hostPortToEntityList(Collection<com.soffid.iam.api.HostPort> instances)
Transforms fromHostPortlist- Specified by:
hostPortToEntityListin interfaceHostPortEntityDao
-
newHostPortEntity
public HostPortEntity newHostPortEntity()
Creates an instance ofHostPortEntity.- Specified by:
newHostPortEntityin interfaceHostPortEntityDao
-
load
public HostPortEntity load(Long id)
Loads an instance ofHostPortEntityfrom the persistent store.- Specified by:
loadin interfaceHostPortEntityDao
-
loadAll
public List<HostPortEntity> loadAll()
Loads all instances ofHostPortEntityfrom the persistent store.- Specified by:
loadAllin interfaceHostPortEntityDao
-
create
public void create(HostPortEntity entity)
Adds an instance ofHostPortEntityto the persistent store.- Specified by:
createin interfaceHostPortEntityDao
-
update
public void update(HostPortEntity entity)
Updates an instance ofHostPortEntityat the persistent store.- Specified by:
updatein interfaceHostPortEntityDao
-
remove
public void remove(HostPortEntity entity)
Removes an instance ofHostPortEntityfrom the persistent store.- Specified by:
removein interfaceHostPortEntityDao
-
create
public void create(Collection<? extends HostPortEntity> entities)
Creates a collection ofHostPortEntityand adds it to the persistent store.- Specified by:
createin interfaceHostPortEntityDao
-
update
public void update(Collection<? extends HostPortEntity> entities)
Updates a collection ofHostPortEntityin the persistent store.- Specified by:
updatein interfaceHostPortEntityDao
-
remove
public void remove(Collection<? extends HostPortEntity> entities)
Removes a collection ofHostPortEntityfrom the persistent store.- Specified by:
removein interfaceHostPortEntityDao
-
remove
public void remove(Long id)
Removes an instance ofHostPortEntityfrom the persistent store.- Specified by:
removein interfaceHostPortEntityDao
-
query
public List<HostPortEntity> query(String queryString, Parameter[] parameters)
Query ofHostPortEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceHostPortEntityDao
-
query
public List<HostPortEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostPortEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceHostPortEntityDao
-
-