Package com.avoka.tm.func
Class FuncParam
- java.lang.Object
-
- com.avoka.tm.func.FuncParam
-
public class FuncParam extends Object
Provides a Fluent function parameter class.- Since:
- 17.10.0
-
-
Field Summary
Fields Modifier and Type Field Description DocumentappDocThe mutable XML application document.Map<String,Object>paramsThe request parameters.javax.servlet.http.HttpServletRequestrequestThe HTTP request.SvcDefsvcDefThe service definition VO.StringtriggerThe function trigger.static StringTRIGGER_BACKGROUND_DELIVERYThe 'Background Delivery' function trigger.static StringTRIGGER_FORM_FUNCTIONThe 'Form Function' function trigger.static StringTRIGGER_FORM_INELIGIBLEThe 'Form Ineligible' function trigger.static StringTRIGGER_FORM_OPENThe 'Form Open' function trigger.static StringTRIGGER_FORM_RESUMEThe 'Form Resume' function trigger.static StringTRIGGER_FORM_UPDATEThe 'Form Update' function trigger.static StringTRIGGER_USER_CANCELThe 'User Cancel' function trigger.static StringTRIGGER_USER_SAVEThe 'User Save' function trigger.static StringTRIGGER_USER_SUBMITThe 'User Submit' function trigger.TxntxnThe transaction VO.UseruserThe user VO.
-
-
-
Field Detail
-
TRIGGER_FORM_OPEN
public static final String TRIGGER_FORM_OPEN
The 'Form Open' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_FORM_RESUME
public static final String TRIGGER_FORM_RESUME
The 'Form Resume' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_FORM_UPDATE
public static final String TRIGGER_FORM_UPDATE
The 'Form Update' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_FORM_INELIGIBLE
public static final String TRIGGER_FORM_INELIGIBLE
The 'Form Ineligible' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_FORM_FUNCTION
public static final String TRIGGER_FORM_FUNCTION
The 'Form Function' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_USER_SAVE
public static final String TRIGGER_USER_SAVE
The 'User Save' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_USER_SUBMIT
public static final String TRIGGER_USER_SUBMIT
The 'User Submit' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_USER_CANCEL
public static final String TRIGGER_USER_CANCEL
The 'User Cancel' function trigger.- See Also:
- Constant Field Values
-
TRIGGER_BACKGROUND_DELIVERY
public static final String TRIGGER_BACKGROUND_DELIVERY
The 'Background Delivery' function trigger.- See Also:
- Constant Field Values
-
trigger
public final String trigger
The function trigger.
-
appDoc
public final Document appDoc
The mutable XML application document.
-
request
public final javax.servlet.http.HttpServletRequest request
The HTTP request.
-
svcDef
public final SvcDef svcDef
The service definition VO.
-
txn
public final Txn txn
The transaction VO.
-
user
public final User user
The user VO.
-
-
Constructor Detail
-
FuncParam
public FuncParam(String trigger, Document appDoc, Map<String,Object> params, javax.servlet.http.HttpServletRequest request, SvcDef svcDef, Txn txn, User user)
Create a FuncParam value object with the given attributes.- Parameters:
trigger- the function triggerappDoc- the application XML Documentparams- the request parametersrequest- the servlet requestsvcDef- the service definitiontxn- the transaction value objectuser- the user value object
-
-