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