Class OutboundMessageHandlerContext
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- net.shibboleth.idp.plugin.authn.oidc.rp.context.OutboundMessageHandlerContext
-
- All Implemented Interfaces:
Iterable<BaseContext>
public class OutboundMessageHandlerContext extends BaseContext
A context to stash controller parameters for use by message handlers. For example, the OIDC RP preEncodeMessageHandlers.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opensaml.messaging.context.BaseContext
BaseContext.ContextSetNoRemoveIteratorDecorator
-
-
Field Summary
Fields Modifier and Type Field Description private StringwebflowKeyThe spring webflow key.
-
Constructor Summary
Constructors Constructor Description OutboundMessageHandlerContext()Constructor to allow no-arg construction.OutboundMessageHandlerContext(String key)Convenience constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetWebflowKey()Get the Spring Webflow execution key.OutboundMessageHandlerContextsetWebflowKey(String key)Set the Spring Webflow execution key.-
Methods inherited from class org.opensaml.messaging.context.BaseContext
addSubcontext, addSubcontext, clearSubcontexts, containsSubcontext, createSubcontext, getParent, getSubcontext, getSubcontext, getSubcontext, getSubcontext, iterator, removeSubcontext, removeSubcontext, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
webflowKey
@Nullable private String webflowKey
The spring webflow key.
-
-
Constructor Detail
-
OutboundMessageHandlerContext
public OutboundMessageHandlerContext(@Nonnull String key)Convenience constructor.- Parameters:
key- the swf key
-
OutboundMessageHandlerContext
public OutboundMessageHandlerContext()
Constructor to allow no-arg construction.
-
-
Method Detail
-
setWebflowKey
public OutboundMessageHandlerContext setWebflowKey(@Nonnull String key)
Set the Spring Webflow execution key.- Parameters:
key- the swf execution key- Returns:
- this
-
getWebflowKey
@Nullable public String getWebflowKey()
Get the Spring Webflow execution key.- Returns:
- Returns the webflowKey.
-
-