Interface IPluginSessionReplacerParams
-
- All Superinterfaces:
IPluginGenericReplacerParams
,IPluginParameters
- All Known Implementing Classes:
PluginSessionReplacerParams
public interface IPluginSessionReplacerParams extends IPluginGenericReplacerParams
Interface for the parameters of a session replacer plugin.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default String
getContextName()
Deprecated.IEntityContext
getEntityContext()
String
getPlaceholder()
String
getPlaceholderContent()
ISessionReplacerParams
getReplacerParams()
default String
getSessionId()
Deprecated.default Vorgang
getVorgang()
Deprecated.-
Methods inherited from interface de.xima.fc.interfaces.plugin.param.replacer.IPluginGenericReplacerParams
getEscaper
-
-
-
-
Method Detail
-
getEntityContext
IEntityContext getEntityContext()
- Specified by:
getEntityContext
in interfaceIPluginGenericReplacerParams
- Returns:
- An
IEntityContext
that can be used to send queries to the database.
-
getVorgang
@Deprecated default Vorgang getVorgang()
Deprecated.- Returns:
- The current
Vorgang
, if there is one.
-
getPlaceholder
String getPlaceholder()
- Specified by:
getPlaceholder
in interfaceIPluginGenericReplacerParams
- Returns:
- The entire placeholder, including the name of the placeholder as well as the prefix and the suffix, such as
[%tf1%]
. - See Also:
IPluginGenericReplacerParams.getPlaceholderContent()
-
getPlaceholderContent
String getPlaceholderContent()
- Specified by:
getPlaceholderContent
in interfaceIPluginGenericReplacerParams
- Returns:
- The name of the placeholder, without the prefix and the suffix, such as
tf1
. - See Also:
IPluginGenericReplacerParams.getPlaceholder()
-
getSessionId
@Deprecated default String getSessionId()
Deprecated.- Returns:
- The current session ID of the
HttpSession
.
-
getContextName
@Deprecated default String getContextName()
Deprecated.- Returns:
- The current context name of the web application.
-
getReplacerParams
ISessionReplacerParams getReplacerParams()
- Specified by:
getReplacerParams
in interfaceIPluginGenericReplacerParams
- Returns:
- The current replacer parameters for the replacement process.
-
-