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