Package com.soffid.iam.model
Interface PamRuleEntityDao
-
- All Known Implementing Classes:
PamRuleEntityDaoBase
,PamRuleEntityDaoImpl
public interface PamRuleEntityDao
DAO for Entity PamRuleEntity- See Also:
PamRuleEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(PamRuleEntity entity)
Adds an instance ofPamRuleEntity
to the persistent store.void
create(Collection<? extends PamRuleEntity> entities)
Creates a collection ofPamRuleEntity
and adds it to the persistent store.PamRuleEntity
findByName(CriteriaSearchConfiguration criteria, String name)
CriteriaSearchConfiguration finderPamRuleEntity
findByName(String name)
Operation findByNamePamRuleEntity
load(Long id)
Loads an instance ofPamRuleEntity
from the persistent store.List<PamRuleEntity>
loadAll()
Loads all instances ofPamRuleEntity
from the persistent store.PamRuleEntity
newPamRuleEntity()
Creates an instance ofPamRuleEntity
.PamRuleEntity
pamRuleToEntity(com.soffid.iam.api.PamRule instance)
Transforms fromPamRule
objectvoid
pamRuleToEntity(com.soffid.iam.api.PamRule source, PamRuleEntity target, boolean copyIfNull)
Copy data fromPamRule
objectList<PamRuleEntity>
pamRuleToEntityList(Collection<com.soffid.iam.api.PamRule> instances)
Transforms fromPamRule
listList<PamRuleEntity>
query(String query, Parameter[] parameters)
Query ofPamRuleEntity
from the persistent store.List<PamRuleEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofPamRuleEntity
from the persistent store.void
remove(PamRuleEntity entity)
Removes an instance ofPamRuleEntity
from the persistent store.void
remove(Long id)
Removes an instance ofPamRuleEntity
from the persistent store.void
remove(Collection<? extends PamRuleEntity> entities)
Removes a collection ofPamRuleEntity
from the persistent store.com.soffid.iam.api.PamRule
toPamRule(PamRuleEntity entity)
Transforms toPamRule
objectvoid
toPamRule(PamRuleEntity source, com.soffid.iam.api.PamRule target)
Copy data toPamRule
objectList<com.soffid.iam.api.PamRule>
toPamRuleList(Collection<PamRuleEntity> entities)
Transforms toPamRule
listvoid
update(PamRuleEntity entity)
Updates an instance ofPamRuleEntity
at the persistent store.void
update(Collection<? extends PamRuleEntity> entities)
Updates a collection ofPamRuleEntity
in 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 toPamRule
object
-
toPamRule
com.soffid.iam.api.PamRule toPamRule(PamRuleEntity entity)
Transforms toPamRule
object
-
toPamRuleList
List<com.soffid.iam.api.PamRule> toPamRuleList(Collection<PamRuleEntity> entities)
Transforms toPamRule
list
-
pamRuleToEntity
void pamRuleToEntity(com.soffid.iam.api.PamRule source, PamRuleEntity target, boolean copyIfNull)
Copy data fromPamRule
object
-
pamRuleToEntity
PamRuleEntity pamRuleToEntity(com.soffid.iam.api.PamRule instance)
Transforms fromPamRule
object
-
pamRuleToEntityList
List<PamRuleEntity> pamRuleToEntityList(Collection<com.soffid.iam.api.PamRule> instances)
Transforms fromPamRule
list
-
newPamRuleEntity
PamRuleEntity newPamRuleEntity()
Creates an instance ofPamRuleEntity
.
-
create
void create(PamRuleEntity entity)
Adds an instance ofPamRuleEntity
to the persistent store.
-
update
void update(PamRuleEntity entity)
Updates an instance ofPamRuleEntity
at the persistent store.
-
remove
void remove(PamRuleEntity entity)
Removes an instance ofPamRuleEntity
from the persistent store.
-
load
PamRuleEntity load(Long id)
Loads an instance ofPamRuleEntity
from the persistent store.
-
loadAll
List<PamRuleEntity> loadAll()
Loads all instances ofPamRuleEntity
from the persistent store.
-
create
void create(Collection<? extends PamRuleEntity> entities)
Creates a collection ofPamRuleEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends PamRuleEntity> entities)
Updates a collection ofPamRuleEntity
in the persistent store.
-
remove
void remove(Collection<? extends PamRuleEntity> entities)
Removes a collection ofPamRuleEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofPamRuleEntity
from the persistent store.
-
query
List<PamRuleEntity> query(String query, Parameter[] parameters)
Query ofPamRuleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<PamRuleEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofPamRuleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-