public interface IPluginServletActionParams extends IPluginParameters, Serializable
Modifier and Type | Method and Description |
---|---|
EServletAction |
getAction() |
Benutzer |
getBenutzer() |
FrontendServer |
getFrontendServer() |
Map<String,String> |
getHeaderMap() |
Locale |
getLocale() |
Mandant |
getPluginClient() |
Map<String,List<String>> |
getRequestParameters()
The parameters from the HTTP request.
|
Map<String,Serializable> |
getSessionAttributeMap() |
SessionAttributes |
getSessionAttributes()
Deprecated.
|
String |
getSessionID() |
Map<String,List<FileData>> |
getUploadFiles() |
ValueParameters |
getValueParameters()
Deprecated.
|
Map<String,Serializable> getSessionAttributeMap()
Map
with all attributes of the current HttpSession
. Please note that changes to this
map are not reflected or saved in the HttpSession
.Benutzer getBenutzer()
Benutzer
from the current XfcSession
who called the servlet action plugin.Map<String,List<String>> getRequestParameters()
http://example.com?foo=bar&foo=baz
. Also, for some HTTP methods such as EServletAction.DELETE
, you
may have to parse the HTTP request body yourself.Map
with the parameters from the HttpServletRequest
.getUploadFiles()
Map<String,List<FileData>> getUploadFiles()
Map
between the name of an upload form element and the file(s) that were uploaded for that upload
element.Locale getLocale()
Locale
of the request; or the default locale in case no locale could be determined.EServletAction getAction()
Map<String,String> getHeaderMap()
Map
that contains the HTTP header parameters.FrontendServer getFrontendServer()
FrontendServer
to which the servlet request was made, or null
if the request
was made directly to the master server.String getSessionID()
null
in case no session ID is available
(which may happen, for example, when the user is not logged in).Mandant getPluginClient()
Mandant
to which the servlet action plugin belongs to; or null
in case the plugin was
installed as a system plugin and no client was provided in the servlet action URL.@Deprecated SessionAttributes getSessionAttributes()
getSessionAttributeMap()
@Deprecated ValueParameters getValueParameters()
getRequestParameters()
Copyright © 2021 XIMA MEDIA GmbH. All rights reserved.