Package de.xima.fc.workflow.model
Class HttpContextData
java.lang.Object
de.xima.fc.workflow.model.HttpContextData
- All Implemented Interfaces:
IHttpContextData
,Serializable
POJO implementation of
IHttpContextData
with a builder.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
Builder for creating an immutable instance ofIHttpContextData
. -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpContextData.Builder
builder()
boolean
boolean
boolean
boolean
-
Method Details
-
getBaseUrl
- Specified by:
getBaseUrl
in interfaceIHttpContextData
- Returns:
- The base URL of the current HTTP request, i.e. the context path with the protocol, server, and port.
-
getContextPath
- Specified by:
getContextPath
in interfaceIHttpContextData
- Returns:
- The context path of the current HTTP request, i.e. the path where the formcycle application is running.
-
getFormRequestType
- Specified by:
getFormRequestType
in interfaceIHttpContextData
- Returns:
- The form request type of the current HTTP request
-
getFrqSessionAttributesMap
- Specified by:
getFrqSessionAttributesMap
in interfaceIHttpContextData
- Returns:
- A map of session attributes of the current FRQ session. May be an empty map, but must not be
null
.
-
getFrqSessionId
- Specified by:
getFrqSessionId
in interfaceIHttpContextData
- Returns:
- The session ID of the current FRQ session. Empty string when not FRQ session exists.
-
getSessionAttributesMap
- Specified by:
getSessionAttributesMap
in interfaceIHttpContextData
- Returns:
- A map of session attributes of the current HTTP session. May be an empty map, but must not be
null
.
-
getSessionId
- Specified by:
getSessionId
in interfaceIHttpContextData
- Returns:
- The session ID of the current HTTP session. Empty string when not HTTP session exists.
-
isFormCheckRequested
public boolean isFormCheckRequested()- Specified by:
isFormCheckRequested
in interfaceIHttpContextData
- Returns:
true
to indicate the form should be validated on the server, orfalse
otherwise.
-
isPreviewRequested
public boolean isPreviewRequested()- Specified by:
isPreviewRequested
in interfaceIHttpContextData
- Returns:
true
if a preview was requested,false
otherwise.
-
isReviewRequested
public boolean isReviewRequested()- Specified by:
isReviewRequested
in interfaceIHttpContextData
- Returns:
true
if a review was requested (when opening a form in the inbox), orfalse
otherwise.
-
isSaveRequested
public boolean isSaveRequested()- Specified by:
isSaveRequested
in interfaceIHttpContextData
- Returns:
- Whether the form record should only be saved, i.e. when the user submitted the form via a save button.
Both submit and save buttons are treated equally as in that they both trigger the workflow to be executed.
The main difference is that the default
Vorgang.isSaved()
will be set totrue
buttons.
-
builder
- Returns:
- A new builder for creating an immutable instance of
IHttpContextData
.
-