Package com.soffid.iam.model
Class ObjectMappingPropertyEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.ObjectMappingPropertyEntityDaoBase
-
- All Implemented Interfaces:
ObjectMappingPropertyEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
ObjectMappingPropertyEntityDaoImpl
public abstract class ObjectMappingPropertyEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements ObjectMappingPropertyEntityDao
DAO Base for Entity ObjectMappingPropertyEntity
-
-
Constructor Summary
Constructors Constructor Description ObjectMappingPropertyEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(ObjectMappingPropertyEntity entity)Adds an instance ofObjectMappingPropertyEntityto the persistent store.voidcreate(Collection<? extends ObjectMappingPropertyEntity> entities)Creates a collection ofObjectMappingPropertyEntityand adds it to the persistent store.ObjectMappingEntityDaogetObjectMappingEntityDao()Gets reference toobjectMappingEntityDao.ObjectMappingPropertyEntityload(Long id)Loads an instance ofObjectMappingPropertyEntityfrom the persistent store.List<ObjectMappingPropertyEntity>loadAll()Loads all instances ofObjectMappingPropertyEntityfrom the persistent store.ObjectMappingPropertyEntitynewObjectMappingPropertyEntity()Creates an instance ofObjectMappingPropertyEntity.ObjectMappingPropertyEntityobjectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)Transforms fromObjectMappingPropertyobjectvoidobjectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)Copy data fromObjectMappingPropertyobjectList<ObjectMappingPropertyEntity>objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)Transforms fromObjectMappingPropertylistList<ObjectMappingPropertyEntity>query(String queryString, Parameter[] parameters)Query ofObjectMappingPropertyEntityfrom the persistent store.List<ObjectMappingPropertyEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofObjectMappingPropertyEntityfrom the persistent store.voidremove(ObjectMappingPropertyEntity entity)Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.voidremove(Long id)Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.voidremove(Collection<? extends ObjectMappingPropertyEntity> entities)Removes a collection ofObjectMappingPropertyEntityfrom the persistent store.voidsetObjectMappingEntityDao(ObjectMappingEntityDao objectMappingEntityDao)Sets reference toobjectMappingEntityDao.com.soffid.iam.api.ObjectMappingPropertytoObjectMappingProperty(ObjectMappingPropertyEntity entity)Transforms toObjectMappingPropertyobjectvoidtoObjectMappingProperty(ObjectMappingPropertyEntity source, com.soffid.iam.api.ObjectMappingProperty target)Copy data toObjectMappingPropertyobjectList<com.soffid.iam.api.ObjectMappingProperty>toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> instances)Transforms toObjectMappingPropertylistvoidupdate(ObjectMappingPropertyEntity entity)Updates an instance ofObjectMappingPropertyEntityat the persistent store.voidupdate(Collection<? extends ObjectMappingPropertyEntity> entities)Updates a collection ofObjectMappingPropertyEntityin 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
-
setObjectMappingEntityDao
public void setObjectMappingEntityDao(ObjectMappingEntityDao objectMappingEntityDao)
Sets reference toobjectMappingEntityDao.
-
getObjectMappingEntityDao
public ObjectMappingEntityDao getObjectMappingEntityDao()
Gets reference toobjectMappingEntityDao.
-
toObjectMappingProperty
public void toObjectMappingProperty(ObjectMappingPropertyEntity source, com.soffid.iam.api.ObjectMappingProperty target)
Copy data toObjectMappingPropertyobject- Specified by:
toObjectMappingPropertyin interfaceObjectMappingPropertyEntityDao
-
toObjectMappingProperty
public com.soffid.iam.api.ObjectMappingProperty toObjectMappingProperty(ObjectMappingPropertyEntity entity)
Transforms toObjectMappingPropertyobject- Specified by:
toObjectMappingPropertyin interfaceObjectMappingPropertyEntityDao
-
toObjectMappingPropertyList
public List<com.soffid.iam.api.ObjectMappingProperty> toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> instances)
Transforms toObjectMappingPropertylist- Specified by:
toObjectMappingPropertyListin interfaceObjectMappingPropertyEntityDao
-
objectMappingPropertyToEntity
public void objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)Copy data fromObjectMappingPropertyobject- Specified by:
objectMappingPropertyToEntityin interfaceObjectMappingPropertyEntityDao
-
objectMappingPropertyToEntity
public ObjectMappingPropertyEntity objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)
Transforms fromObjectMappingPropertyobject- Specified by:
objectMappingPropertyToEntityin interfaceObjectMappingPropertyEntityDao
-
objectMappingPropertyToEntityList
public List<ObjectMappingPropertyEntity> objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)
Transforms fromObjectMappingPropertylist- Specified by:
objectMappingPropertyToEntityListin interfaceObjectMappingPropertyEntityDao
-
newObjectMappingPropertyEntity
public ObjectMappingPropertyEntity newObjectMappingPropertyEntity()
Creates an instance ofObjectMappingPropertyEntity.- Specified by:
newObjectMappingPropertyEntityin interfaceObjectMappingPropertyEntityDao
-
load
public ObjectMappingPropertyEntity load(Long id)
Loads an instance ofObjectMappingPropertyEntityfrom the persistent store.- Specified by:
loadin interfaceObjectMappingPropertyEntityDao
-
loadAll
public List<ObjectMappingPropertyEntity> loadAll()
Loads all instances ofObjectMappingPropertyEntityfrom the persistent store.- Specified by:
loadAllin interfaceObjectMappingPropertyEntityDao
-
create
public void create(ObjectMappingPropertyEntity entity)
Adds an instance ofObjectMappingPropertyEntityto the persistent store.- Specified by:
createin interfaceObjectMappingPropertyEntityDao
-
update
public void update(ObjectMappingPropertyEntity entity)
Updates an instance ofObjectMappingPropertyEntityat the persistent store.- Specified by:
updatein interfaceObjectMappingPropertyEntityDao
-
remove
public void remove(ObjectMappingPropertyEntity entity)
Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.- Specified by:
removein interfaceObjectMappingPropertyEntityDao
-
create
public void create(Collection<? extends ObjectMappingPropertyEntity> entities)
Creates a collection ofObjectMappingPropertyEntityand adds it to the persistent store.- Specified by:
createin interfaceObjectMappingPropertyEntityDao
-
update
public void update(Collection<? extends ObjectMappingPropertyEntity> entities)
Updates a collection ofObjectMappingPropertyEntityin the persistent store.- Specified by:
updatein interfaceObjectMappingPropertyEntityDao
-
remove
public void remove(Collection<? extends ObjectMappingPropertyEntity> entities)
Removes a collection ofObjectMappingPropertyEntityfrom the persistent store.- Specified by:
removein interfaceObjectMappingPropertyEntityDao
-
remove
public void remove(Long id)
Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.- Specified by:
removein interfaceObjectMappingPropertyEntityDao
-
query
public List<ObjectMappingPropertyEntity> query(String queryString, Parameter[] parameters)
Query ofObjectMappingPropertyEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceObjectMappingPropertyEntityDao
-
query
public List<ObjectMappingPropertyEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingPropertyEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceObjectMappingPropertyEntityDao
-
-