Package com.soffid.iam.model
Interface ServerCertificateEntityDao
-
- All Known Implementing Classes:
ServerCertificateEntityDaoBase
,ServerCertificateEntityDaoImpl
public interface ServerCertificateEntityDao
DAO for Entity ServerCertificateEntity- See Also:
es.caib.seycon.ng.model.ServerCertificateEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ServerCertificateEntity entity)
Adds an instance ofServerCertificateEntity
to the persistent store.void
create(Collection<? extends ServerCertificateEntity> entities)
Creates a collection ofServerCertificateEntity
and adds it to the persistent store.ServerCertificateEntity
findByServer(long serverId)
Operation findByServerServerCertificateEntity
findByServer(CriteriaSearchConfiguration criteria, long serverId)
CriteriaSearchConfiguration finderServerCertificateEntity
load(Long id)
Loads an instance ofServerCertificateEntity
from the persistent store.List<ServerCertificateEntity>
loadAll()
Loads all instances ofServerCertificateEntity
from the persistent store.ServerCertificateEntity
newServerCertificateEntity()
Creates an instance ofServerCertificateEntity
.List<ServerCertificateEntity>
query(String query, Parameter[] parameters)
Query ofServerCertificateEntity
from the persistent store.List<ServerCertificateEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofServerCertificateEntity
from the persistent store.void
remove(ServerCertificateEntity entity)
Removes an instance ofServerCertificateEntity
from the persistent store.void
remove(Long id)
Removes an instance ofServerCertificateEntity
from the persistent store.void
remove(Collection<? extends ServerCertificateEntity> entities)
Removes a collection ofServerCertificateEntity
from the persistent store.void
update(ServerCertificateEntity entity)
Updates an instance ofServerCertificateEntity
at the persistent store.void
update(Collection<? extends ServerCertificateEntity> entities)
Updates a collection ofServerCertificateEntity
in the persistent store.
-
-
-
Method Detail
-
findByServer
ServerCertificateEntity findByServer(long serverId)
Operation findByServer- Parameters:
serverId
-- Returns:
-
findByServer
ServerCertificateEntity findByServer(CriteriaSearchConfiguration criteria, long serverId)
CriteriaSearchConfiguration finder
-
newServerCertificateEntity
ServerCertificateEntity newServerCertificateEntity()
Creates an instance ofServerCertificateEntity
.
-
create
void create(ServerCertificateEntity entity)
Adds an instance ofServerCertificateEntity
to the persistent store.
-
update
void update(ServerCertificateEntity entity)
Updates an instance ofServerCertificateEntity
at the persistent store.
-
remove
void remove(ServerCertificateEntity entity)
Removes an instance ofServerCertificateEntity
from the persistent store.
-
load
ServerCertificateEntity load(Long id)
Loads an instance ofServerCertificateEntity
from the persistent store.
-
loadAll
List<ServerCertificateEntity> loadAll()
Loads all instances ofServerCertificateEntity
from the persistent store.
-
create
void create(Collection<? extends ServerCertificateEntity> entities)
Creates a collection ofServerCertificateEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends ServerCertificateEntity> entities)
Updates a collection ofServerCertificateEntity
in the persistent store.
-
remove
void remove(Collection<? extends ServerCertificateEntity> entities)
Removes a collection ofServerCertificateEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofServerCertificateEntity
from the persistent store.
-
query
List<ServerCertificateEntity> query(String query, Parameter[] parameters)
Query ofServerCertificateEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ServerCertificateEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofServerCertificateEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-