Interface IPluginDataSourceParams
- 
- All Superinterfaces:
 IPluginParameters,Serializable
- All Known Implementing Classes:
 DatenquelleParams
public interface IPluginDataSourceParams extends IPluginParameters, Serializable
Interface that encapsulates the parameters for a data source plugin.- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description BenutzergetCurrentUser()com.alibaba.fastjson.JSONObjectgetLdapUserData()Deprecated.usegetUserData()MandantgetMandant()ProjektgetProjekt()ValueParametersgetRequestParameters()Getters for the parameters of the HTTP request.Map<String,Serializable>getSessionAttributeMap()SessionAttributesgetSessionAttributes()Deprecated.com.alibaba.fastjson.JSONObjectgetUserData() 
 - 
 
- 
- 
Method Detail
- 
getSessionAttributeMap
Map<String,Serializable> getSessionAttributeMap()
- Returns:
 - A 
Mapwith attributes of the current form session. - Since:
 - 5.0
 
 
- 
getRequestParameters
ValueParameters getRequestParameters()
Getters for the parameters of the HTTP request. They are grouped into several categories, according to their type, which is determined by the prefix of the HTTP parameter.- Returns:
 - The 
ValueParametersrepresenting the request parameters of the current form request. 
 
- 
getCurrentUser
Benutzer getCurrentUser()
- Returns:
 - The current 
Benutzerwho is signed in to FORMCYCLE. - Since:
 - 6.1
 
 
- 
getUserData
com.alibaba.fastjson.JSONObject getUserData()
- Returns:
 - A 
JSONObjectwith the data for the authenticated user. When the current form does not require authorization, or when the current user did not authorize via this may returnnull. - Since:
 - 6.1
 
 
- 
getLdapUserData
@Deprecated com.alibaba.fastjson.JSONObject getLdapUserData()
Deprecated.usegetUserData() 
- 
getSessionAttributes
@Deprecated SessionAttributes getSessionAttributes()
Deprecated. 
 - 
 
 -