Package com.avoka.fc.core.service
Interface IRenderFormService
-
public interface IRenderFormService
Provides an interface for render form service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
renderForm(TemplateVersion templateVersion, Form form, String xmlData, HttpServletRequest request, HttpServletResponse response, String targetUrl, RequestLog requestLog)
Render the Form using the given form, template version and XML data to the response.
-
-
-
Method Detail
-
renderForm
void renderForm(TemplateVersion templateVersion, Form form, String xmlData, HttpServletRequest request, HttpServletResponse response, String targetUrl, RequestLog requestLog) throws ApplicationException
Render the Form using the given form, template version and XML data to the response.- Parameters:
templateVersion
- the form template version to renderform
- the form to renderxmlData
- the XML form data seed documentrequest
- the users Http servlet requestresponse
- the Http servlet response to render totargetUrl
- the target URL of the submission servletrequestLog
- optional request log parameter- Throws:
ApplicationException
- if an error occurs at runtime
-
-