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