Interface IFormElementHandler
-
- All Superinterfaces:
IAPIHandler
,Serializable
- All Known Implementing Classes:
FormElementHandler
public interface IFormElementHandler extends IAPIHandler
-
-
Method Summary
All Methods Instance Methods Abstract 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 interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
-
-
-
Method Detail
-
getAllBy
List<FormElement> getAllBy(UserContext uc, FormVersion fv)
-
removeAllFromFormVersion
void removeAllFromFormVersion(UserContext uc, FormVersion fv)
-
getByUUID
FormElement getByUUID(UserContext uc, FormVersion formVersion, String uuid)
Returns the form element with the given UUID string- 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- Since:
- 6.x.x
-
getByUUID
FormElement getByUUID(UserContext uc, FormVersion formVersion, UUID uuid)
Returns the form element with the given UUID- 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- Since:
- 6.x.x
-
-