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
public interface IFormElementDao extends IGenericDao<FormElement>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<FormElement>
all(IEntityContext ec, de.xima.cmn.criteria.QueryCriteriaManager qcm, FormVersion fv)
FormElement
getByUUID(IEntityContext ec, FormVersion formVersion, String uuid)
Returns the form element with the given UUID stringFormElement
getByUUID(IEntityContext ec, FormVersion formVersion, UUID uuid)
Returns the form element with the given UUIDvoid
removeAllFromFormVersion(IEntityContext ec, FormVersion fv)
-
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
getEntityRefs, read
-
-
-
-
Method Detail
-
all
List<FormElement> all(IEntityContext ec, de.xima.cmn.criteria.QueryCriteriaManager qcm, FormVersion fv)
-
getByUUID
FormElement getByUUID(IEntityContext ec, FormVersion formVersion, String uuid)
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
FormElement getByUUID(IEntityContext ec, FormVersion formVersion, UUID uuid)
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
void removeAllFromFormVersion(IEntityContext ec, FormVersion fv)
-
-