Package com.soffid.iam.model
Interface SamlAssertionEntityDao
-
- All Known Implementing Classes:
SamlAssertionEntityDaoBase,SamlAssertionEntityDaoImpl
public interface SamlAssertionEntityDaoDAO for Entity SamlAssertionEntity- See Also:
SamlAssertionEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(SamlAssertionEntity entity)Adds an instance ofSamlAssertionEntityto the persistent store.voidcreate(Collection<? extends SamlAssertionEntity> entities)Creates a collection ofSamlAssertionEntityand adds it to the persistent store.voiddeleteExpired()Operation deleteExpiredSamlAssertionEntityfindByExternalId(CriteriaSearchConfiguration criteria, String externalId)CriteriaSearchConfiguration finderSamlAssertionEntityfindByExternalId(String externalId)Operation findByExternalIdCollection<SamlAssertionEntity>findExpired(CriteriaSearchConfiguration criteria, Date d)CriteriaSearchConfiguration finderCollection<SamlAssertionEntity>findExpired(Date d)Operation findExpiredSamlAssertionEntityload(Long id)Loads an instance ofSamlAssertionEntityfrom the persistent store.List<SamlAssertionEntity>loadAll()Loads all instances ofSamlAssertionEntityfrom the persistent store.SamlAssertionEntitynewSamlAssertionEntity()Creates an instance ofSamlAssertionEntity.List<SamlAssertionEntity>query(String query, Parameter[] parameters)Query ofSamlAssertionEntityfrom the persistent store.List<SamlAssertionEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofSamlAssertionEntityfrom the persistent store.voidremove(SamlAssertionEntity entity)Removes an instance ofSamlAssertionEntityfrom the persistent store.voidremove(Long id)Removes an instance ofSamlAssertionEntityfrom the persistent store.voidremove(Collection<? extends SamlAssertionEntity> entities)Removes a collection ofSamlAssertionEntityfrom the persistent store.voidupdate(SamlAssertionEntity entity)Updates an instance ofSamlAssertionEntityat the persistent store.voidupdate(Collection<? extends SamlAssertionEntity> entities)Updates a collection ofSamlAssertionEntityin the persistent store.
-
-
-
Method Detail
-
findByExternalId
SamlAssertionEntity findByExternalId(String externalId)
Operation findByExternalId- Parameters:
externalId-- Returns:
-
findByExternalId
SamlAssertionEntity findByExternalId(CriteriaSearchConfiguration criteria, String externalId)
CriteriaSearchConfiguration finder
-
findExpired
Collection<SamlAssertionEntity> findExpired(Date d)
Operation findExpired- Parameters:
d-- Returns:
-
findExpired
Collection<SamlAssertionEntity> findExpired(CriteriaSearchConfiguration criteria, Date d)
CriteriaSearchConfiguration finder
-
deleteExpired
void deleteExpired() throws es.caib.seycon.ng.exception.InternalErrorExceptionOperation deleteExpired- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
newSamlAssertionEntity
SamlAssertionEntity newSamlAssertionEntity()
Creates an instance ofSamlAssertionEntity.
-
create
void create(SamlAssertionEntity entity)
Adds an instance ofSamlAssertionEntityto the persistent store.
-
update
void update(SamlAssertionEntity entity)
Updates an instance ofSamlAssertionEntityat the persistent store.
-
remove
void remove(SamlAssertionEntity entity)
Removes an instance ofSamlAssertionEntityfrom the persistent store.
-
load
SamlAssertionEntity load(Long id)
Loads an instance ofSamlAssertionEntityfrom the persistent store.
-
loadAll
List<SamlAssertionEntity> loadAll()
Loads all instances ofSamlAssertionEntityfrom the persistent store.
-
create
void create(Collection<? extends SamlAssertionEntity> entities)
Creates a collection ofSamlAssertionEntityand adds it to the persistent store.
-
update
void update(Collection<? extends SamlAssertionEntity> entities)
Updates a collection ofSamlAssertionEntityin the persistent store.
-
remove
void remove(Collection<? extends SamlAssertionEntity> entities)
Removes a collection ofSamlAssertionEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofSamlAssertionEntityfrom the persistent store.
-
query
List<SamlAssertionEntity> query(String query, Parameter[] parameters)
Query ofSamlAssertionEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<SamlAssertionEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSamlAssertionEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-