Package de.xima.fc.handler.entity
Class FormElementHandler
- java.lang.Object
-
- de.xima.fc.handler.AMSApiHandler
-
- de.xima.fc.handler.entity.GenericHandler
-
- de.xima.fc.handler.entity.FormElementHandler
-
- All Implemented Interfaces:
IAPIHandler
,IFormElementHandler
,IGenericHandler
,Serializable
public class FormElementHandler extends GenericHandler implements IFormElementHandler
The Class FormElementHandler.- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class de.xima.fc.handler.entity.GenericHandler
LOG
-
-
Constructor Summary
Constructors Constructor Description FormElementHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FormElement>
getAllBy(UserContext uc, FormVersion fv)
FormElement
getByUUID(UserContext uc, FormVersion formVersion, String uuid)
Returns the form element with the given UUID stringFormElement
getByUUID(UserContext uc, FormVersion formVersion, UUID uuid)
Returns the form element with the given UUIDvoid
removeAllFromFormVersion(UserContext uc, FormVersion fv)
-
Methods inherited from class de.xima.fc.handler.entity.GenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getSingleAttributes, getSingleAttributes, resultTotalCount, serializableList, update, update
-
Methods inherited from class de.xima.fc.handler.AMSApiHandler
getName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
-
-
-
Method Detail
-
getAllBy
public List<FormElement> getAllBy(UserContext uc, FormVersion fv)
- Specified by:
getAllBy
in interfaceIFormElementHandler
-
getByUUID
public FormElement getByUUID(UserContext uc, FormVersion formVersion, String uuid)
Description copied from interface:IFormElementHandler
Returns the form element with the given UUID string- Specified by:
getByUUID
in interfaceIFormElementHandler
- Parameters:
uc
-UserContext
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
-
getByUUID
public FormElement getByUUID(UserContext uc, FormVersion formVersion, UUID uuid)
Description copied from interface:IFormElementHandler
Returns the form element with the given UUID- Specified by:
getByUUID
in interfaceIFormElementHandler
- Parameters:
uc
-UserContext
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
-
removeAllFromFormVersion
public void removeAllFromFormVersion(UserContext uc, FormVersion fv)
- Specified by:
removeAllFromFormVersion
in interfaceIFormElementHandler
-
-