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)FormElementgetByUUID(UserContext uc, FormVersion formVersion, String uuid)Returns the form element with the given UUID stringFormElementgetByUUID(UserContext uc, FormVersion formVersion, UUID uuid)Returns the form element with the given UUIDvoidremoveAllFromFormVersion(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:
 getAllByin interfaceIFormElementHandler
 
- 
getByUUID
public FormElement getByUUID(UserContext uc, FormVersion formVersion, String uuid)
Description copied from interface:IFormElementHandlerReturns the form element with the given UUID string- Specified by:
 getByUUIDin interfaceIFormElementHandler- Parameters:
 uc-UserContextto useformVersion-FormVersioncontext in which to look for form elementuuid-StringUUID string of the form element- Returns:
 FormElementfor the given UUID and form version
 
- 
getByUUID
public FormElement getByUUID(UserContext uc, FormVersion formVersion, UUID uuid)
Description copied from interface:IFormElementHandlerReturns the form element with the given UUID- Specified by:
 getByUUIDin interfaceIFormElementHandler- Parameters:
 uc-UserContextto useformVersion-FormVersioncontext in which to look for form elementuuid-UUIDUUID of the form element- Returns:
 FormElementfor the given UUID and form version
 
- 
removeAllFromFormVersion
public void removeAllFromFormVersion(UserContext uc, FormVersion fv)
- Specified by:
 removeAllFromFormVersionin interfaceIFormElementHandler
 
 - 
 
 -