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