Package com.soffid.iam.model
Class ObjectMappingEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.ObjectMappingEntityDaoBase
-
- All Implemented Interfaces:
ObjectMappingEntityDao
,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
ObjectMappingEntityDaoImpl
public abstract class ObjectMappingEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements ObjectMappingEntityDao
DAO Base for Entity ObjectMappingEntity
-
-
Constructor Summary
Constructors Constructor Description ObjectMappingEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
create(ObjectMappingEntity entity)
Adds an instance ofObjectMappingEntity
to the persistent store.void
create(Collection<? extends ObjectMappingEntity> entities)
Creates a collection ofObjectMappingEntity
and adds it to the persistent store.AttributeMappingEntityDao
getAttributeMappingEntityDao()
Gets reference toattributeMappingEntityDao
.CustomObjectTypeEntityDao
getCustomObjectTypeEntityDao()
Gets reference tocustomObjectTypeEntityDao
.ObjectMappingPropertyEntityDao
getObjectMappingPropertyEntityDao()
Gets reference toobjectMappingPropertyEntityDao
.ObjectMappingTriggerEntityDao
getObjectMappingTriggerEntityDao()
Gets reference toobjectMappingTriggerEntityDao
.SystemEntityDao
getSystemEntityDao()
Gets reference todispatcherEntityDao
.ObjectMappingEntity
load(Long id)
Loads an instance ofObjectMappingEntity
from the persistent store.List<ObjectMappingEntity>
loadAll()
Loads all instances ofObjectMappingEntity
from the persistent store.ObjectMappingEntity
newObjectMappingEntity()
Creates an instance ofObjectMappingEntity
.ObjectMappingEntity
objectMappingToEntity(com.soffid.iam.api.ObjectMapping instance)
Transforms fromObjectMapping
objectvoid
objectMappingToEntity(com.soffid.iam.api.ObjectMapping source, ObjectMappingEntity target, boolean copyIfNull)
Copy data fromObjectMapping
objectList<ObjectMappingEntity>
objectMappingToEntityList(Collection<com.soffid.iam.api.ObjectMapping> instances)
Transforms fromObjectMapping
listList<ObjectMappingEntity>
query(String queryString, Parameter[] parameters)
Query ofObjectMappingEntity
from the persistent store.List<ObjectMappingEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingEntity
from the persistent store.void
remove(ObjectMappingEntity entity)
Removes an instance ofObjectMappingEntity
from the persistent store.void
remove(Long id)
Removes an instance ofObjectMappingEntity
from the persistent store.void
remove(Collection<? extends ObjectMappingEntity> entities)
Removes a collection ofObjectMappingEntity
from the persistent store.void
setAttributeMappingEntityDao(AttributeMappingEntityDao attributeMappingEntityDao)
Sets reference toattributeMappingEntityDao
.void
setCustomObjectTypeEntityDao(CustomObjectTypeEntityDao customObjectTypeEntityDao)
Sets reference tocustomObjectTypeEntityDao
.void
setObjectMappingPropertyEntityDao(ObjectMappingPropertyEntityDao objectMappingPropertyEntityDao)
Sets reference toobjectMappingPropertyEntityDao
.void
setObjectMappingTriggerEntityDao(ObjectMappingTriggerEntityDao objectMappingTriggerEntityDao)
Sets reference toobjectMappingTriggerEntityDao
.void
setSystemEntityDao(SystemEntityDao dispatcherEntityDao)
Sets reference todispatcherEntityDao
.com.soffid.iam.api.ObjectMapping
toObjectMapping(ObjectMappingEntity entity)
Transforms toObjectMapping
objectvoid
toObjectMapping(ObjectMappingEntity source, com.soffid.iam.api.ObjectMapping target)
Copy data toObjectMapping
objectList<com.soffid.iam.api.ObjectMapping>
toObjectMappingList(Collection<ObjectMappingEntity> instances)
Transforms toObjectMapping
listvoid
update(ObjectMappingEntity entity)
Updates an instance ofObjectMappingEntity
at the persistent store.void
update(Collection<? extends ObjectMappingEntity> entities)
Updates a collection ofObjectMappingEntity
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
-
setAttributeMappingEntityDao
public void setAttributeMappingEntityDao(AttributeMappingEntityDao attributeMappingEntityDao)
Sets reference toattributeMappingEntityDao
.
-
getAttributeMappingEntityDao
public AttributeMappingEntityDao getAttributeMappingEntityDao()
Gets reference toattributeMappingEntityDao
.
-
setCustomObjectTypeEntityDao
public void setCustomObjectTypeEntityDao(CustomObjectTypeEntityDao customObjectTypeEntityDao)
Sets reference tocustomObjectTypeEntityDao
.
-
getCustomObjectTypeEntityDao
public CustomObjectTypeEntityDao getCustomObjectTypeEntityDao()
Gets reference tocustomObjectTypeEntityDao
.
-
setSystemEntityDao
public void setSystemEntityDao(SystemEntityDao dispatcherEntityDao)
Sets reference todispatcherEntityDao
.
-
getSystemEntityDao
public SystemEntityDao getSystemEntityDao()
Gets reference todispatcherEntityDao
.
-
setObjectMappingPropertyEntityDao
public void setObjectMappingPropertyEntityDao(ObjectMappingPropertyEntityDao objectMappingPropertyEntityDao)
Sets reference toobjectMappingPropertyEntityDao
.
-
getObjectMappingPropertyEntityDao
public ObjectMappingPropertyEntityDao getObjectMappingPropertyEntityDao()
Gets reference toobjectMappingPropertyEntityDao
.
-
setObjectMappingTriggerEntityDao
public void setObjectMappingTriggerEntityDao(ObjectMappingTriggerEntityDao objectMappingTriggerEntityDao)
Sets reference toobjectMappingTriggerEntityDao
.
-
getObjectMappingTriggerEntityDao
public ObjectMappingTriggerEntityDao getObjectMappingTriggerEntityDao()
Gets reference toobjectMappingTriggerEntityDao
.
-
toObjectMapping
public void toObjectMapping(ObjectMappingEntity source, com.soffid.iam.api.ObjectMapping target)
Copy data toObjectMapping
object- Specified by:
toObjectMapping
in interfaceObjectMappingEntityDao
-
toObjectMapping
public com.soffid.iam.api.ObjectMapping toObjectMapping(ObjectMappingEntity entity)
Transforms toObjectMapping
object- Specified by:
toObjectMapping
in interfaceObjectMappingEntityDao
-
toObjectMappingList
public List<com.soffid.iam.api.ObjectMapping> toObjectMappingList(Collection<ObjectMappingEntity> instances)
Transforms toObjectMapping
list- Specified by:
toObjectMappingList
in interfaceObjectMappingEntityDao
-
objectMappingToEntity
public void objectMappingToEntity(com.soffid.iam.api.ObjectMapping source, ObjectMappingEntity target, boolean copyIfNull)
Copy data fromObjectMapping
object- Specified by:
objectMappingToEntity
in interfaceObjectMappingEntityDao
-
objectMappingToEntity
public ObjectMappingEntity objectMappingToEntity(com.soffid.iam.api.ObjectMapping instance)
Transforms fromObjectMapping
object- Specified by:
objectMappingToEntity
in interfaceObjectMappingEntityDao
-
objectMappingToEntityList
public List<ObjectMappingEntity> objectMappingToEntityList(Collection<com.soffid.iam.api.ObjectMapping> instances)
Transforms fromObjectMapping
list- Specified by:
objectMappingToEntityList
in interfaceObjectMappingEntityDao
-
newObjectMappingEntity
public ObjectMappingEntity newObjectMappingEntity()
Creates an instance ofObjectMappingEntity
.- Specified by:
newObjectMappingEntity
in interfaceObjectMappingEntityDao
-
load
public ObjectMappingEntity load(Long id)
Loads an instance ofObjectMappingEntity
from the persistent store.- Specified by:
load
in interfaceObjectMappingEntityDao
-
loadAll
public List<ObjectMappingEntity> loadAll()
Loads all instances ofObjectMappingEntity
from the persistent store.- Specified by:
loadAll
in interfaceObjectMappingEntityDao
-
create
public void create(ObjectMappingEntity entity)
Adds an instance ofObjectMappingEntity
to the persistent store.- Specified by:
create
in interfaceObjectMappingEntityDao
-
update
public void update(ObjectMappingEntity entity)
Updates an instance ofObjectMappingEntity
at the persistent store.- Specified by:
update
in interfaceObjectMappingEntityDao
-
remove
public void remove(ObjectMappingEntity entity)
Removes an instance ofObjectMappingEntity
from the persistent store.- Specified by:
remove
in interfaceObjectMappingEntityDao
-
create
public void create(Collection<? extends ObjectMappingEntity> entities)
Creates a collection ofObjectMappingEntity
and adds it to the persistent store.- Specified by:
create
in interfaceObjectMappingEntityDao
-
update
public void update(Collection<? extends ObjectMappingEntity> entities)
Updates a collection ofObjectMappingEntity
in the persistent store.- Specified by:
update
in interfaceObjectMappingEntityDao
-
remove
public void remove(Collection<? extends ObjectMappingEntity> entities)
Removes a collection ofObjectMappingEntity
from the persistent store.- Specified by:
remove
in interfaceObjectMappingEntityDao
-
remove
public void remove(Long id)
Removes an instance ofObjectMappingEntity
from the persistent store.- Specified by:
remove
in interfaceObjectMappingEntityDao
-
query
public List<ObjectMappingEntity> query(String queryString, Parameter[] parameters)
Query ofObjectMappingEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceObjectMappingEntityDao
-
query
public List<ObjectMappingEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingEntity
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 interfaceObjectMappingEntityDao
-
-