Package com.soffid.iam.model
Interface RuleAssignedRoleEntityDao
-
- All Known Implementing Classes:
RuleAssignedRoleEntityDaoBase
,RuleAssignedRoleEntityDaoImpl
public interface RuleAssignedRoleEntityDao
DAO for Entity RuleAssignedRoleEntity- See Also:
RuleAssignedRoleEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(RuleAssignedRoleEntity entity)
Adds an instance ofRuleAssignedRoleEntity
to the persistent store.void
create(Collection<? extends RuleAssignedRoleEntity> entities)
Creates a collection ofRuleAssignedRoleEntity
and adds it to the persistent store.RuleAssignedRoleEntity
load(Long id)
Loads an instance ofRuleAssignedRoleEntity
from the persistent store.List<RuleAssignedRoleEntity>
loadAll()
Loads all instances ofRuleAssignedRoleEntity
from the persistent store.RuleAssignedRoleEntity
newRuleAssignedRoleEntity()
Creates an instance ofRuleAssignedRoleEntity
.List<RuleAssignedRoleEntity>
query(String query, Parameter[] parameters)
Query ofRuleAssignedRoleEntity
from the persistent store.List<RuleAssignedRoleEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofRuleAssignedRoleEntity
from the persistent store.void
remove(RuleAssignedRoleEntity entity)
Removes an instance ofRuleAssignedRoleEntity
from the persistent store.void
remove(Long id)
Removes an instance ofRuleAssignedRoleEntity
from the persistent store.void
remove(Collection<? extends RuleAssignedRoleEntity> entities)
Removes a collection ofRuleAssignedRoleEntity
from the persistent store.RuleAssignedRoleEntity
ruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole instance)
Transforms fromRuleAssignedRole
objectvoid
ruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole source, RuleAssignedRoleEntity target, boolean copyIfNull)
Copy data fromRuleAssignedRole
objectList<RuleAssignedRoleEntity>
ruleAssignedRoleToEntityList(Collection<com.soffid.iam.api.RuleAssignedRole> instances)
Transforms fromRuleAssignedRole
listcom.soffid.iam.api.RuleAssignedRole
toRuleAssignedRole(RuleAssignedRoleEntity entity)
Transforms toRuleAssignedRole
objectvoid
toRuleAssignedRole(RuleAssignedRoleEntity source, com.soffid.iam.api.RuleAssignedRole target)
Copy data toRuleAssignedRole
objectList<com.soffid.iam.api.RuleAssignedRole>
toRuleAssignedRoleList(Collection<RuleAssignedRoleEntity> entities)
Transforms toRuleAssignedRole
listvoid
update(RuleAssignedRoleEntity entity)
Updates an instance ofRuleAssignedRoleEntity
at the persistent store.void
update(Collection<? extends RuleAssignedRoleEntity> entities)
Updates a collection ofRuleAssignedRoleEntity
in the persistent store.
-
-
-
Method Detail
-
toRuleAssignedRole
void toRuleAssignedRole(RuleAssignedRoleEntity source, com.soffid.iam.api.RuleAssignedRole target)
Copy data toRuleAssignedRole
object
-
toRuleAssignedRole
com.soffid.iam.api.RuleAssignedRole toRuleAssignedRole(RuleAssignedRoleEntity entity)
Transforms toRuleAssignedRole
object
-
toRuleAssignedRoleList
List<com.soffid.iam.api.RuleAssignedRole> toRuleAssignedRoleList(Collection<RuleAssignedRoleEntity> entities)
Transforms toRuleAssignedRole
list
-
ruleAssignedRoleToEntity
void ruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole source, RuleAssignedRoleEntity target, boolean copyIfNull)
Copy data fromRuleAssignedRole
object
-
ruleAssignedRoleToEntity
RuleAssignedRoleEntity ruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole instance)
Transforms fromRuleAssignedRole
object
-
ruleAssignedRoleToEntityList
List<RuleAssignedRoleEntity> ruleAssignedRoleToEntityList(Collection<com.soffid.iam.api.RuleAssignedRole> instances)
Transforms fromRuleAssignedRole
list
-
newRuleAssignedRoleEntity
RuleAssignedRoleEntity newRuleAssignedRoleEntity()
Creates an instance ofRuleAssignedRoleEntity
.
-
create
void create(RuleAssignedRoleEntity entity)
Adds an instance ofRuleAssignedRoleEntity
to the persistent store.
-
update
void update(RuleAssignedRoleEntity entity)
Updates an instance ofRuleAssignedRoleEntity
at the persistent store.
-
remove
void remove(RuleAssignedRoleEntity entity)
Removes an instance ofRuleAssignedRoleEntity
from the persistent store.
-
load
RuleAssignedRoleEntity load(Long id)
Loads an instance ofRuleAssignedRoleEntity
from the persistent store.
-
loadAll
List<RuleAssignedRoleEntity> loadAll()
Loads all instances ofRuleAssignedRoleEntity
from the persistent store.
-
create
void create(Collection<? extends RuleAssignedRoleEntity> entities)
Creates a collection ofRuleAssignedRoleEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends RuleAssignedRoleEntity> entities)
Updates a collection ofRuleAssignedRoleEntity
in the persistent store.
-
remove
void remove(Collection<? extends RuleAssignedRoleEntity> entities)
Removes a collection ofRuleAssignedRoleEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofRuleAssignedRoleEntity
from the persistent store.
-
query
List<RuleAssignedRoleEntity> query(String query, Parameter[] parameters)
Query ofRuleAssignedRoleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<RuleAssignedRoleEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofRuleAssignedRoleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-