Package com.soffid.iam.model
Interface ServerCertificateEntityDao
-
- All Known Implementing Classes:
ServerCertificateEntityDaoBase,ServerCertificateEntityDaoImpl
public interface ServerCertificateEntityDaoDAO for Entity ServerCertificateEntity- See Also:
es.caib.seycon.ng.model.ServerCertificateEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ServerCertificateEntity entity)Adds an instance ofServerCertificateEntityto the persistent store.voidcreate(Collection<? extends ServerCertificateEntity> entities)Creates a collection ofServerCertificateEntityand adds it to the persistent store.ServerCertificateEntityfindByServer(long serverId)Operation findByServerServerCertificateEntityfindByServer(CriteriaSearchConfiguration criteria, long serverId)CriteriaSearchConfiguration finderServerCertificateEntityload(Long id)Loads an instance ofServerCertificateEntityfrom the persistent store.List<ServerCertificateEntity>loadAll()Loads all instances ofServerCertificateEntityfrom the persistent store.ServerCertificateEntitynewServerCertificateEntity()Creates an instance ofServerCertificateEntity.List<ServerCertificateEntity>query(String query, Parameter[] parameters)Query ofServerCertificateEntityfrom the persistent store.List<ServerCertificateEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofServerCertificateEntityfrom the persistent store.voidremove(ServerCertificateEntity entity)Removes an instance ofServerCertificateEntityfrom the persistent store.voidremove(Long id)Removes an instance ofServerCertificateEntityfrom the persistent store.voidremove(Collection<? extends ServerCertificateEntity> entities)Removes a collection ofServerCertificateEntityfrom the persistent store.voidupdate(ServerCertificateEntity entity)Updates an instance ofServerCertificateEntityat the persistent store.voidupdate(Collection<? extends ServerCertificateEntity> entities)Updates a collection ofServerCertificateEntityin 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 ofServerCertificateEntityto the persistent store.
-
update
void update(ServerCertificateEntity entity)
Updates an instance ofServerCertificateEntityat the persistent store.
-
remove
void remove(ServerCertificateEntity entity)
Removes an instance ofServerCertificateEntityfrom the persistent store.
-
load
ServerCertificateEntity load(Long id)
Loads an instance ofServerCertificateEntityfrom the persistent store.
-
loadAll
List<ServerCertificateEntity> loadAll()
Loads all instances ofServerCertificateEntityfrom the persistent store.
-
create
void create(Collection<? extends ServerCertificateEntity> entities)
Creates a collection ofServerCertificateEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ServerCertificateEntity> entities)
Updates a collection ofServerCertificateEntityin the persistent store.
-
remove
void remove(Collection<? extends ServerCertificateEntity> entities)
Removes a collection ofServerCertificateEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofServerCertificateEntityfrom the persistent store.
-
query
List<ServerCertificateEntity> query(String query, Parameter[] parameters)
Query ofServerCertificateEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ServerCertificateEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofServerCertificateEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-