Package com.soffid.iam.model
Interface PamRuleEntityDao
-
- All Known Implementing Classes:
PamRuleEntityDaoBase,PamRuleEntityDaoImpl
public interface PamRuleEntityDaoDAO for Entity PamRuleEntity- See Also:
PamRuleEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(PamRuleEntity entity)Adds an instance ofPamRuleEntityto the persistent store.voidcreate(Collection<? extends PamRuleEntity> entities)Creates a collection ofPamRuleEntityand adds it to the persistent store.PamRuleEntityfindByName(CriteriaSearchConfiguration criteria, String name)CriteriaSearchConfiguration finderPamRuleEntityfindByName(String name)Operation findByNamePamRuleEntityload(Long id)Loads an instance ofPamRuleEntityfrom the persistent store.List<PamRuleEntity>loadAll()Loads all instances ofPamRuleEntityfrom the persistent store.PamRuleEntitynewPamRuleEntity()Creates an instance ofPamRuleEntity.PamRuleEntitypamRuleToEntity(com.soffid.iam.api.PamRule instance)Transforms fromPamRuleobjectvoidpamRuleToEntity(com.soffid.iam.api.PamRule source, PamRuleEntity target, boolean copyIfNull)Copy data fromPamRuleobjectList<PamRuleEntity>pamRuleToEntityList(Collection<com.soffid.iam.api.PamRule> instances)Transforms fromPamRulelistList<PamRuleEntity>query(String query, Parameter[] parameters)Query ofPamRuleEntityfrom the persistent store.List<PamRuleEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofPamRuleEntityfrom the persistent store.voidremove(PamRuleEntity entity)Removes an instance ofPamRuleEntityfrom the persistent store.voidremove(Long id)Removes an instance ofPamRuleEntityfrom the persistent store.voidremove(Collection<? extends PamRuleEntity> entities)Removes a collection ofPamRuleEntityfrom the persistent store.com.soffid.iam.api.PamRuletoPamRule(PamRuleEntity entity)Transforms toPamRuleobjectvoidtoPamRule(PamRuleEntity source, com.soffid.iam.api.PamRule target)Copy data toPamRuleobjectList<com.soffid.iam.api.PamRule>toPamRuleList(Collection<PamRuleEntity> entities)Transforms toPamRulelistvoidupdate(PamRuleEntity entity)Updates an instance ofPamRuleEntityat the persistent store.voidupdate(Collection<? extends PamRuleEntity> entities)Updates a collection ofPamRuleEntityin the persistent store.
-
-
-
Method Detail
-
findByName
PamRuleEntity findByName(String name)
Operation findByName- Parameters:
name-- Returns:
-
findByName
PamRuleEntity findByName(CriteriaSearchConfiguration criteria, String name)
CriteriaSearchConfiguration finder
-
toPamRule
void toPamRule(PamRuleEntity source, com.soffid.iam.api.PamRule target)
Copy data toPamRuleobject
-
toPamRule
com.soffid.iam.api.PamRule toPamRule(PamRuleEntity entity)
Transforms toPamRuleobject
-
toPamRuleList
List<com.soffid.iam.api.PamRule> toPamRuleList(Collection<PamRuleEntity> entities)
Transforms toPamRulelist
-
pamRuleToEntity
void pamRuleToEntity(com.soffid.iam.api.PamRule source, PamRuleEntity target, boolean copyIfNull)Copy data fromPamRuleobject
-
pamRuleToEntity
PamRuleEntity pamRuleToEntity(com.soffid.iam.api.PamRule instance)
Transforms fromPamRuleobject
-
pamRuleToEntityList
List<PamRuleEntity> pamRuleToEntityList(Collection<com.soffid.iam.api.PamRule> instances)
Transforms fromPamRulelist
-
newPamRuleEntity
PamRuleEntity newPamRuleEntity()
Creates an instance ofPamRuleEntity.
-
create
void create(PamRuleEntity entity)
Adds an instance ofPamRuleEntityto the persistent store.
-
update
void update(PamRuleEntity entity)
Updates an instance ofPamRuleEntityat the persistent store.
-
remove
void remove(PamRuleEntity entity)
Removes an instance ofPamRuleEntityfrom the persistent store.
-
load
PamRuleEntity load(Long id)
Loads an instance ofPamRuleEntityfrom the persistent store.
-
loadAll
List<PamRuleEntity> loadAll()
Loads all instances ofPamRuleEntityfrom the persistent store.
-
create
void create(Collection<? extends PamRuleEntity> entities)
Creates a collection ofPamRuleEntityand adds it to the persistent store.
-
update
void update(Collection<? extends PamRuleEntity> entities)
Updates a collection ofPamRuleEntityin the persistent store.
-
remove
void remove(Collection<? extends PamRuleEntity> entities)
Removes a collection ofPamRuleEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofPamRuleEntityfrom the persistent store.
-
query
List<PamRuleEntity> query(String query, Parameter[] parameters)
Query ofPamRuleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<PamRuleEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofPamRuleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-