Class PluginFormPreProcessParams
- java.lang.Object
-
- de.xima.fc.plugin.models.params.form.PluginFormPreProcessParams
-
- All Implemented Interfaces:
IPluginParameters
,IPluginFormPreProcessParams
,Serializable
public class PluginFormPreProcessParams extends Object implements IPluginFormPreProcessParams
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PluginFormPreProcessParams(IFormRequestContext ctx, Vorgang vorgang)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description IFormRequestContext
getFormRequestContext()
com.alibaba.fastjson.JSONObject
getLdapUserData()
Deprecated.com.alibaba.fastjson.JSONObject
getUserData()
Vorgang
getVorgang()
-
-
-
Constructor Detail
-
PluginFormPreProcessParams
public PluginFormPreProcessParams(IFormRequestContext ctx, Vorgang vorgang)
-
-
Method Detail
-
getFormRequestContext
public IFormRequestContext getFormRequestContext()
- Specified by:
getFormRequestContext
in interfaceIPluginFormPreProcessParams
- Returns:
IExtendedFormRequestContext
The current form request context that may be used to access the submitted form data.
-
getVorgang
public Vorgang getVorgang()
- Specified by:
getVorgang
in interfaceIPluginFormPreProcessParams
- Returns:
- The current
Vorgang
. It is newly created if the form was just submitted for the first time. When the form is resubmitted, this is the existingVorgang
.
-
getUserData
public com.alibaba.fastjson.JSONObject getUserData()
- Specified by:
getUserData
in interfaceIPluginFormPreProcessParams
-
getLdapUserData
@Deprecated public com.alibaba.fastjson.JSONObject getLdapUserData()
Deprecated.- Specified by:
getLdapUserData
in interfaceIPluginFormPreProcessParams
- Returns:
- A
JSONObject
with the current LDAP data for the authenticated user. When the current form does not require authorization, or when the current user did not authorize via LDAP, this may return an emptyJSONObject
-
-