Interface IPluginSessionReplacerParams
-
- All Superinterfaces:
IPluginParameters
- All Known Implementing Classes:
PluginSessionReplacerParams
public interface IPluginSessionReplacerParams extends IPluginParameters
Interface for the parameters of a session replacer plugin.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContextName()
IEntityContext
getEntityContext()
String
getPlaceholder()
String
getPlaceholderContent()
String
getSessionId()
Vorgang
getVorgang()
-
-
-
Method Detail
-
getEntityContext
IEntityContext getEntityContext()
- Returns:
- The current
IEntityContext
that is required for interacting with the database.
-
getPlaceholder
String getPlaceholder()
- Returns:
- The entire placeholder, including the name of the placeholder as well as the prefix and the suffix, such as
[%tf1%]
. - See Also:
getPlaceholderContent()
-
getPlaceholderContent
String getPlaceholderContent()
- Returns:
- The name of the placeholder, without the prefix and the suffix, such as
tf1
. - See Also:
getPlaceholder()
-
getSessionId
String getSessionId()
- Returns:
- The current session ID of the
HttpSession
.
-
getContextName
String getContextName()
- Returns:
- The current context name of the web application.
-
-