Package com.soffid.iam.model
Interface TenantServerEntityDao
-
- All Known Implementing Classes:
TenantServerEntityDaoBase,TenantServerEntityDaoImpl
public interface TenantServerEntityDaoDAO for Entity TenantServerEntity- See Also:
TenantServerEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(TenantServerEntity entity)Adds an instance ofTenantServerEntityto the persistent store.voidcreate(Collection<? extends TenantServerEntity> entities)Creates a collection ofTenantServerEntityand adds it to the persistent store.TenantServerEntityload(Long id)Loads an instance ofTenantServerEntityfrom the persistent store.List<TenantServerEntity>loadAll()Loads all instances ofTenantServerEntityfrom the persistent store.TenantServerEntitynewTenantServerEntity()Creates an instance ofTenantServerEntity.List<TenantServerEntity>query(String query, Parameter[] parameters)Query ofTenantServerEntityfrom the persistent store.List<TenantServerEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofTenantServerEntityfrom the persistent store.voidremove(TenantServerEntity entity)Removes an instance ofTenantServerEntityfrom the persistent store.voidremove(Long id)Removes an instance ofTenantServerEntityfrom the persistent store.voidremove(Collection<? extends TenantServerEntity> entities)Removes a collection ofTenantServerEntityfrom the persistent store.voidupdate(TenantServerEntity entity)Updates an instance ofTenantServerEntityat the persistent store.voidupdate(Collection<? extends TenantServerEntity> entities)Updates a collection ofTenantServerEntityin the persistent store.
-
-
-
Method Detail
-
newTenantServerEntity
TenantServerEntity newTenantServerEntity()
Creates an instance ofTenantServerEntity.
-
create
void create(TenantServerEntity entity)
Adds an instance ofTenantServerEntityto the persistent store.
-
update
void update(TenantServerEntity entity)
Updates an instance ofTenantServerEntityat the persistent store.
-
remove
void remove(TenantServerEntity entity)
Removes an instance ofTenantServerEntityfrom the persistent store.
-
load
TenantServerEntity load(Long id)
Loads an instance ofTenantServerEntityfrom the persistent store.
-
loadAll
List<TenantServerEntity> loadAll()
Loads all instances ofTenantServerEntityfrom the persistent store.
-
create
void create(Collection<? extends TenantServerEntity> entities)
Creates a collection ofTenantServerEntityand adds it to the persistent store.
-
update
void update(Collection<? extends TenantServerEntity> entities)
Updates a collection ofTenantServerEntityin the persistent store.
-
remove
void remove(Collection<? extends TenantServerEntity> entities)
Removes a collection ofTenantServerEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofTenantServerEntityfrom the persistent store.
-
query
List<TenantServerEntity> query(String query, Parameter[] parameters)
Query ofTenantServerEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<TenantServerEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofTenantServerEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-