Package com.soffid.iam.model
Interface SamlRequestEntityDao
-
- All Known Implementing Classes:
SamlRequestEntityDaoBase,SamlRequestEntityDaoImpl
public interface SamlRequestEntityDaoDAO for Entity SamlRequestEntity- See Also:
SamlRequestEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(SamlRequestEntity entity)Adds an instance ofSamlRequestEntityto the persistent store.voidcreate(Collection<? extends SamlRequestEntity> entities)Creates a collection ofSamlRequestEntityand adds it to the persistent store.voiddeleteExpired()Operation deleteExpiredSamlRequestEntityfindByExternalId(CriteriaSearchConfiguration criteria, String externalId)CriteriaSearchConfiguration finderSamlRequestEntityfindByExternalId(String externalId)Operation findByExternalIdCollection<SamlRequestEntity>findExpired(CriteriaSearchConfiguration criteria, Date d)CriteriaSearchConfiguration finderCollection<SamlRequestEntity>findExpired(Date d)Operation findExpiredSamlRequestEntityload(Long id)Loads an instance ofSamlRequestEntityfrom the persistent store.List<SamlRequestEntity>loadAll()Loads all instances ofSamlRequestEntityfrom the persistent store.SamlRequestEntitynewSamlRequestEntity()Creates an instance ofSamlRequestEntity.List<SamlRequestEntity>query(String query, Parameter[] parameters)Query ofSamlRequestEntityfrom the persistent store.List<SamlRequestEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofSamlRequestEntityfrom the persistent store.voidremove(SamlRequestEntity entity)Removes an instance ofSamlRequestEntityfrom the persistent store.voidremove(Long id)Removes an instance ofSamlRequestEntityfrom the persistent store.voidremove(Collection<? extends SamlRequestEntity> entities)Removes a collection ofSamlRequestEntityfrom the persistent store.voidupdate(SamlRequestEntity entity)Updates an instance ofSamlRequestEntityat the persistent store.voidupdate(Collection<? extends SamlRequestEntity> entities)Updates a collection ofSamlRequestEntityin the persistent store.
-
-
-
Method Detail
-
findByExternalId
SamlRequestEntity findByExternalId(String externalId)
Operation findByExternalId- Parameters:
externalId-- Returns:
-
findByExternalId
SamlRequestEntity findByExternalId(CriteriaSearchConfiguration criteria, String externalId)
CriteriaSearchConfiguration finder
-
findExpired
Collection<SamlRequestEntity> findExpired(Date d)
Operation findExpired- Parameters:
d-- Returns:
-
findExpired
Collection<SamlRequestEntity> 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
-
newSamlRequestEntity
SamlRequestEntity newSamlRequestEntity()
Creates an instance ofSamlRequestEntity.
-
create
void create(SamlRequestEntity entity)
Adds an instance ofSamlRequestEntityto the persistent store.
-
update
void update(SamlRequestEntity entity)
Updates an instance ofSamlRequestEntityat the persistent store.
-
remove
void remove(SamlRequestEntity entity)
Removes an instance ofSamlRequestEntityfrom the persistent store.
-
load
SamlRequestEntity load(Long id)
Loads an instance ofSamlRequestEntityfrom the persistent store.
-
loadAll
List<SamlRequestEntity> loadAll()
Loads all instances ofSamlRequestEntityfrom the persistent store.
-
create
void create(Collection<? extends SamlRequestEntity> entities)
Creates a collection ofSamlRequestEntityand adds it to the persistent store.
-
update
void update(Collection<? extends SamlRequestEntity> entities)
Updates a collection ofSamlRequestEntityin the persistent store.
-
remove
void remove(Collection<? extends SamlRequestEntity> entities)
Removes a collection ofSamlRequestEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofSamlRequestEntityfrom the persistent store.
-
query
List<SamlRequestEntity> query(String query, Parameter[] parameters)
Query ofSamlRequestEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<SamlRequestEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSamlRequestEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-