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 void
create(ObjectMappingPropertyEntity entity)
Adds an instance ofObjectMappingPropertyEntity
to the persistent store.void
create(Collection<? extends ObjectMappingPropertyEntity> entities)
Creates a collection ofObjectMappingPropertyEntity
and adds it to the persistent store.ObjectMappingEntityDao
getObjectMappingEntityDao()
Gets reference toobjectMappingEntityDao
.ObjectMappingPropertyEntity
load(Long id)
Loads an instance ofObjectMappingPropertyEntity
from the persistent store.List<ObjectMappingPropertyEntity>
loadAll()
Loads all instances ofObjectMappingPropertyEntity
from the persistent store.ObjectMappingPropertyEntity
newObjectMappingPropertyEntity()
Creates an instance ofObjectMappingPropertyEntity
.ObjectMappingPropertyEntity
objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)
Transforms fromObjectMappingProperty
objectvoid
objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)
Copy data fromObjectMappingProperty
objectList<ObjectMappingPropertyEntity>
objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)
Transforms fromObjectMappingProperty
listList<ObjectMappingPropertyEntity>
query(String queryString, Parameter[] parameters)
Query ofObjectMappingPropertyEntity
from the persistent store.List<ObjectMappingPropertyEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingPropertyEntity
from the persistent store.void
remove(ObjectMappingPropertyEntity entity)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.void
remove(Long id)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.void
remove(Collection<? extends ObjectMappingPropertyEntity> entities)
Removes a collection ofObjectMappingPropertyEntity
from the persistent store.void
setObjectMappingEntityDao(ObjectMappingEntityDao objectMappingEntityDao)
Sets reference toobjectMappingEntityDao
.com.soffid.iam.api.ObjectMappingProperty
toObjectMappingProperty(ObjectMappingPropertyEntity entity)
Transforms toObjectMappingProperty
objectvoid
toObjectMappingProperty(ObjectMappingPropertyEntity source, com.soffid.iam.api.ObjectMappingProperty target)
Copy data toObjectMappingProperty
objectList<com.soffid.iam.api.ObjectMappingProperty>
toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> instances)
Transforms toObjectMappingProperty
listvoid
update(ObjectMappingPropertyEntity entity)
Updates an instance ofObjectMappingPropertyEntity
at the persistent store.void
update(Collection<? extends ObjectMappingPropertyEntity> entities)
Updates a collection ofObjectMappingPropertyEntity
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
-
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 toObjectMappingProperty
object- Specified by:
toObjectMappingProperty
in interfaceObjectMappingPropertyEntityDao
-
toObjectMappingProperty
public com.soffid.iam.api.ObjectMappingProperty toObjectMappingProperty(ObjectMappingPropertyEntity entity)
Transforms toObjectMappingProperty
object- Specified by:
toObjectMappingProperty
in interfaceObjectMappingPropertyEntityDao
-
toObjectMappingPropertyList
public List<com.soffid.iam.api.ObjectMappingProperty> toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> instances)
Transforms toObjectMappingProperty
list- Specified by:
toObjectMappingPropertyList
in interfaceObjectMappingPropertyEntityDao
-
objectMappingPropertyToEntity
public void objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)
Copy data fromObjectMappingProperty
object- Specified by:
objectMappingPropertyToEntity
in interfaceObjectMappingPropertyEntityDao
-
objectMappingPropertyToEntity
public ObjectMappingPropertyEntity objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)
Transforms fromObjectMappingProperty
object- Specified by:
objectMappingPropertyToEntity
in interfaceObjectMappingPropertyEntityDao
-
objectMappingPropertyToEntityList
public List<ObjectMappingPropertyEntity> objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)
Transforms fromObjectMappingProperty
list- Specified by:
objectMappingPropertyToEntityList
in interfaceObjectMappingPropertyEntityDao
-
newObjectMappingPropertyEntity
public ObjectMappingPropertyEntity newObjectMappingPropertyEntity()
Creates an instance ofObjectMappingPropertyEntity
.- Specified by:
newObjectMappingPropertyEntity
in interfaceObjectMappingPropertyEntityDao
-
load
public ObjectMappingPropertyEntity load(Long id)
Loads an instance ofObjectMappingPropertyEntity
from the persistent store.- Specified by:
load
in interfaceObjectMappingPropertyEntityDao
-
loadAll
public List<ObjectMappingPropertyEntity> loadAll()
Loads all instances ofObjectMappingPropertyEntity
from the persistent store.- Specified by:
loadAll
in interfaceObjectMappingPropertyEntityDao
-
create
public void create(ObjectMappingPropertyEntity entity)
Adds an instance ofObjectMappingPropertyEntity
to the persistent store.- Specified by:
create
in interfaceObjectMappingPropertyEntityDao
-
update
public void update(ObjectMappingPropertyEntity entity)
Updates an instance ofObjectMappingPropertyEntity
at the persistent store.- Specified by:
update
in interfaceObjectMappingPropertyEntityDao
-
remove
public void remove(ObjectMappingPropertyEntity entity)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.- Specified by:
remove
in interfaceObjectMappingPropertyEntityDao
-
create
public void create(Collection<? extends ObjectMappingPropertyEntity> entities)
Creates a collection ofObjectMappingPropertyEntity
and adds it to the persistent store.- Specified by:
create
in interfaceObjectMappingPropertyEntityDao
-
update
public void update(Collection<? extends ObjectMappingPropertyEntity> entities)
Updates a collection ofObjectMappingPropertyEntity
in the persistent store.- Specified by:
update
in interfaceObjectMappingPropertyEntityDao
-
remove
public void remove(Collection<? extends ObjectMappingPropertyEntity> entities)
Removes a collection ofObjectMappingPropertyEntity
from the persistent store.- Specified by:
remove
in interfaceObjectMappingPropertyEntityDao
-
remove
public void remove(Long id)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.- Specified by:
remove
in interfaceObjectMappingPropertyEntityDao
-
query
public List<ObjectMappingPropertyEntity> query(String queryString, Parameter[] parameters)
Query ofObjectMappingPropertyEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceObjectMappingPropertyEntityDao
-
query
public List<ObjectMappingPropertyEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingPropertyEntity
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 interfaceObjectMappingPropertyEntityDao
-
-