Package com.soffid.iam.model
Interface ServerPluginModuleEntityDao
-
- All Known Implementing Classes:
ServerPluginModuleEntityDaoBase
,ServerPluginModuleEntityDaoImpl
public interface ServerPluginModuleEntityDao
DAO for Entity ServerPluginModuleEntity- See Also:
es.caib.seycon.ng.model.ServerPluginModuleEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ServerPluginModuleEntity entity)
Adds an instance ofServerPluginModuleEntity
to the persistent store.void
create(Collection<? extends ServerPluginModuleEntity> entities)
Creates a collection ofServerPluginModuleEntity
and adds it to the persistent store.List<ServerPluginModuleEntity>
findByType(CriteriaSearchConfiguration criteria, es.caib.seycon.ng.comu.ServerPluginModuleType type)
CriteriaSearchConfiguration finderList<ServerPluginModuleEntity>
findByType(es.caib.seycon.ng.comu.ServerPluginModuleType type)
Operation findByTypeServerPluginModuleEntity
load(Long id)
Loads an instance ofServerPluginModuleEntity
from the persistent store.List<ServerPluginModuleEntity>
loadAll()
Loads all instances ofServerPluginModuleEntity
from the persistent store.ServerPluginModuleEntity
newServerPluginModuleEntity()
Creates an instance ofServerPluginModuleEntity
.List<ServerPluginModuleEntity>
query(String query, Parameter[] parameters)
Query ofServerPluginModuleEntity
from the persistent store.List<ServerPluginModuleEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofServerPluginModuleEntity
from the persistent store.void
remove(ServerPluginModuleEntity entity)
Removes an instance ofServerPluginModuleEntity
from the persistent store.void
remove(Long id)
Removes an instance ofServerPluginModuleEntity
from the persistent store.void
remove(Collection<? extends ServerPluginModuleEntity> entities)
Removes a collection ofServerPluginModuleEntity
from the persistent store.ServerPluginModuleEntity
serverPluginModuleToEntity(com.soffid.iam.api.ServerPluginModule instance)
Transforms fromServerPluginModule
objectvoid
serverPluginModuleToEntity(com.soffid.iam.api.ServerPluginModule source, ServerPluginModuleEntity target, boolean copyIfNull)
Copy data fromServerPluginModule
objectList<ServerPluginModuleEntity>
serverPluginModuleToEntityList(Collection<com.soffid.iam.api.ServerPluginModule> instances)
Transforms fromServerPluginModule
listcom.soffid.iam.api.ServerPluginModule
toServerPluginModule(ServerPluginModuleEntity entity)
Transforms toServerPluginModule
objectvoid
toServerPluginModule(ServerPluginModuleEntity source, com.soffid.iam.api.ServerPluginModule target)
Copy data toServerPluginModule
objectList<com.soffid.iam.api.ServerPluginModule>
toServerPluginModuleList(Collection<ServerPluginModuleEntity> entities)
Transforms toServerPluginModule
listvoid
update(ServerPluginModuleEntity entity)
Updates an instance ofServerPluginModuleEntity
at the persistent store.void
update(Collection<? extends ServerPluginModuleEntity> entities)
Updates a collection ofServerPluginModuleEntity
in the persistent store.
-
-
-
Method Detail
-
findByType
List<ServerPluginModuleEntity> findByType(es.caib.seycon.ng.comu.ServerPluginModuleType type)
Operation findByType- Parameters:
type
-- Returns:
-
findByType
List<ServerPluginModuleEntity> findByType(CriteriaSearchConfiguration criteria, es.caib.seycon.ng.comu.ServerPluginModuleType type)
CriteriaSearchConfiguration finder
-
toServerPluginModule
void toServerPluginModule(ServerPluginModuleEntity source, com.soffid.iam.api.ServerPluginModule target)
Copy data toServerPluginModule
object
-
toServerPluginModule
com.soffid.iam.api.ServerPluginModule toServerPluginModule(ServerPluginModuleEntity entity)
Transforms toServerPluginModule
object
-
toServerPluginModuleList
List<com.soffid.iam.api.ServerPluginModule> toServerPluginModuleList(Collection<ServerPluginModuleEntity> entities)
Transforms toServerPluginModule
list
-
serverPluginModuleToEntity
void serverPluginModuleToEntity(com.soffid.iam.api.ServerPluginModule source, ServerPluginModuleEntity target, boolean copyIfNull)
Copy data fromServerPluginModule
object
-
serverPluginModuleToEntity
ServerPluginModuleEntity serverPluginModuleToEntity(com.soffid.iam.api.ServerPluginModule instance)
Transforms fromServerPluginModule
object
-
serverPluginModuleToEntityList
List<ServerPluginModuleEntity> serverPluginModuleToEntityList(Collection<com.soffid.iam.api.ServerPluginModule> instances)
Transforms fromServerPluginModule
list
-
newServerPluginModuleEntity
ServerPluginModuleEntity newServerPluginModuleEntity()
Creates an instance ofServerPluginModuleEntity
.
-
create
void create(ServerPluginModuleEntity entity)
Adds an instance ofServerPluginModuleEntity
to the persistent store.
-
update
void update(ServerPluginModuleEntity entity)
Updates an instance ofServerPluginModuleEntity
at the persistent store.
-
remove
void remove(ServerPluginModuleEntity entity)
Removes an instance ofServerPluginModuleEntity
from the persistent store.
-
load
ServerPluginModuleEntity load(Long id)
Loads an instance ofServerPluginModuleEntity
from the persistent store.
-
loadAll
List<ServerPluginModuleEntity> loadAll()
Loads all instances ofServerPluginModuleEntity
from the persistent store.
-
create
void create(Collection<? extends ServerPluginModuleEntity> entities)
Creates a collection ofServerPluginModuleEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends ServerPluginModuleEntity> entities)
Updates a collection ofServerPluginModuleEntity
in the persistent store.
-
remove
void remove(Collection<? extends ServerPluginModuleEntity> entities)
Removes a collection ofServerPluginModuleEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofServerPluginModuleEntity
from the persistent store.
-
query
List<ServerPluginModuleEntity> query(String query, Parameter[] parameters)
Query ofServerPluginModuleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ServerPluginModuleEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofServerPluginModuleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-