Package com.soffid.iam.doc.model
Interface DocSignDao
-
- All Known Implementing Classes:
DocSignDaoBase,DocSignDaoImpl
public interface DocSignDaoDAO for Entity DocSign- See Also:
DocSign
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(DocSign entity)Adds an instance ofDocSignto the persistent store.voidcreate(Collection<? extends DocSign> entities)Creates a collection ofDocSignand adds it to the persistent store.DocSignload(Long id)Loads an instance ofDocSignfrom the persistent store.List<DocSign>loadAll()Loads all instances ofDocSignfrom the persistent store.DocSignnewDocSign()Creates an instance ofDocSign.List<DocSign>query(String query, Parameter[] parameters)Query ofDocSignfrom the persistent store.List<DocSign>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofDocSignfrom the persistent store.voidremove(DocSign entity)Removes an instance ofDocSignfrom the persistent store.voidremove(Long id)Removes an instance ofDocSignfrom the persistent store.voidremove(Collection<? extends DocSign> entities)Removes a collection ofDocSignfrom the persistent store.voidupdate(DocSign entity)Updates an instance ofDocSignat the persistent store.voidupdate(Collection<? extends DocSign> entities)Updates a collection ofDocSignin the persistent store.
-
-
-
Method Detail
-
create
void create(Collection<? extends DocSign> entities)
Creates a collection ofDocSignand adds it to the persistent store.
-
update
void update(Collection<? extends DocSign> entities)
Updates a collection ofDocSignin the persistent store.
-
remove
void remove(Collection<? extends DocSign> entities)
Removes a collection ofDocSignfrom the persistent store.
-
query
List<DocSign> query(String query, Parameter[] parameters)
Query ofDocSignfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
-