Package com.soffid.iam.model
Interface SamlAssertionEntityDao
-
- All Known Implementing Classes:
SamlAssertionEntityDaoBase
,SamlAssertionEntityDaoImpl
public interface SamlAssertionEntityDao
DAO for Entity SamlAssertionEntity- See Also:
SamlAssertionEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(SamlAssertionEntity entity)
Adds an instance ofSamlAssertionEntity
to the persistent store.void
create(Collection<? extends SamlAssertionEntity> entities)
Creates a collection ofSamlAssertionEntity
and adds it to the persistent store.void
deleteExpired()
Operation deleteExpiredSamlAssertionEntity
findByExternalId(CriteriaSearchConfiguration criteria, String externalId)
CriteriaSearchConfiguration finderSamlAssertionEntity
findByExternalId(String externalId)
Operation findByExternalIdCollection<SamlAssertionEntity>
findExpired(CriteriaSearchConfiguration criteria, Date d)
CriteriaSearchConfiguration finderCollection<SamlAssertionEntity>
findExpired(Date d)
Operation findExpiredSamlAssertionEntity
load(Long id)
Loads an instance ofSamlAssertionEntity
from the persistent store.List<SamlAssertionEntity>
loadAll()
Loads all instances ofSamlAssertionEntity
from the persistent store.SamlAssertionEntity
newSamlAssertionEntity()
Creates an instance ofSamlAssertionEntity
.List<SamlAssertionEntity>
query(String query, Parameter[] parameters)
Query ofSamlAssertionEntity
from the persistent store.List<SamlAssertionEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSamlAssertionEntity
from the persistent store.void
remove(SamlAssertionEntity entity)
Removes an instance ofSamlAssertionEntity
from the persistent store.void
remove(Long id)
Removes an instance ofSamlAssertionEntity
from the persistent store.void
remove(Collection<? extends SamlAssertionEntity> entities)
Removes a collection ofSamlAssertionEntity
from the persistent store.void
update(SamlAssertionEntity entity)
Updates an instance ofSamlAssertionEntity
at the persistent store.void
update(Collection<? extends SamlAssertionEntity> entities)
Updates a collection ofSamlAssertionEntity
in 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.InternalErrorException
Operation deleteExpired- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
newSamlAssertionEntity
SamlAssertionEntity newSamlAssertionEntity()
Creates an instance ofSamlAssertionEntity
.
-
create
void create(SamlAssertionEntity entity)
Adds an instance ofSamlAssertionEntity
to the persistent store.
-
update
void update(SamlAssertionEntity entity)
Updates an instance ofSamlAssertionEntity
at the persistent store.
-
remove
void remove(SamlAssertionEntity entity)
Removes an instance ofSamlAssertionEntity
from the persistent store.
-
load
SamlAssertionEntity load(Long id)
Loads an instance ofSamlAssertionEntity
from the persistent store.
-
loadAll
List<SamlAssertionEntity> loadAll()
Loads all instances ofSamlAssertionEntity
from the persistent store.
-
create
void create(Collection<? extends SamlAssertionEntity> entities)
Creates a collection ofSamlAssertionEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends SamlAssertionEntity> entities)
Updates a collection ofSamlAssertionEntity
in the persistent store.
-
remove
void remove(Collection<? extends SamlAssertionEntity> entities)
Removes a collection ofSamlAssertionEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofSamlAssertionEntity
from the persistent store.
-
query
List<SamlAssertionEntity> query(String query, Parameter[] parameters)
Query ofSamlAssertionEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<SamlAssertionEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSamlAssertionEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-