Package com.avoka.tm.func
Interface IFluentFunction
-
- All Superinterfaces:
com.avoka.fc.core.service.IServiceDefinitionAware
public interface IFluentFunction extends com.avoka.fc.core.service.IServiceDefinitionAware
Provides a Fluent Function interface for executing server side Transact Application logic.- Since:
- 17.10.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FuncResult
execute(String triggerType, HttpServletRequest request, com.avoka.fc.core.entity.Submission submission, Map<String,Object> params, Document formDoc, org.apache.commons.fileupload.FileItem fileAttachment, com.avoka.fc.core.entity.UserAccount userAccount)
Execute the Fluent function and return a func result object.com.avoka.fc.core.entity.GroovyServiceLog
getGroovyServiceLog()
Integer
getMaxDeliveryAttempts()
Integer
getRetryDelayMins()
boolean
isDeliveryFunction()
boolean
isFunctionDisabled()
-
-
-
Method Detail
-
execute
FuncResult execute(String triggerType, HttpServletRequest request, com.avoka.fc.core.entity.Submission submission, Map<String,Object> params, Document formDoc, org.apache.commons.fileupload.FileItem fileAttachment, com.avoka.fc.core.entity.UserAccount userAccount)
Execute the Fluent function and return a func result object.- Parameters:
triggerType
- the function trigger typerequest
- the servlet requestsubmission
- the submission recordparams
- the request parametersformDoc
- the form XML datafileAttachment
- the uploaded file attachmentuserAccount
- the user account record- Returns:
- the function result object
-
isDeliveryFunction
boolean isDeliveryFunction()
- Returns:
- true if the function is a Delivery Function
-
getGroovyServiceLog
com.avoka.fc.core.entity.GroovyServiceLog getGroovyServiceLog()
- Returns:
- the groovy service log generated when the function was executed or null otherwise.
-
isFunctionDisabled
boolean isFunctionDisabled()
- Returns:
- specify whether the function is disabled and should not be executed.
-
getMaxDeliveryAttempts
Integer getMaxDeliveryAttempts()
- Returns:
- the service definition maximum number of times a delivery function should be attempted if an error occurs.
-
getRetryDelayMins
Integer getRetryDelayMins()
- Returns:
- the service definition minimum retry delay in minutes
-
-