Package de.xima.fc.dao.interfaces
Interface IFormElementDao
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<FormElement,
,Long, IEntityContext> IGenericDao<FormElement>
- All Known Implementing Classes:
FormElementDao
-
Method Summary
Modifier and TypeMethodDescriptionall
(IEntityContext ec, de.xima.cmn.criteria.QueryCriteriaManager qcm, FormVersion fv) getByUUID
(IEntityContext ec, FormVersion formVersion, String uuid) Returns the form element with the given UUID stringgetByUUID
(IEntityContext ec, FormVersion formVersion, UUID uuid) Returns the form element with the given UUIDvoid
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, update
Methods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
count, findAll, findSingle, getEntityRefs, read
-
Method Details
-
all
List<FormElement> all(IEntityContext ec, de.xima.cmn.criteria.QueryCriteriaManager qcm, FormVersion fv) -
getByUUID
Returns the form element with the given UUID string- Parameters:
ec
-IEntityContext
to useformVersion
-FormVersion
context in which to look for form elementuuid
-String
UUID string of the form element- Returns:
FormElement
for the given UUID and form version- Since:
- 6.1.0
-
getByUUID
Returns the form element with the given UUID- Parameters:
ec
-IEntityContext
to useformVersion
-FormVersion
context in which to look for form elementuuid
-UUID
UUID of the form element- Returns:
FormElement
for the given UUID and form version- Since:
- 6.1.0
-
removeAllFromFormVersion
-