Class UserInfoResponseContext
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- net.shibboleth.idp.plugin.authn.oidc.rp.context.AbstractAuthenticatableOIDCContext
-
- net.shibboleth.idp.plugin.authn.oidc.rp.context.UserInfoResponseContext
-
- All Implemented Interfaces:
Iterable<BaseContext>
public class UserInfoResponseContext extends AbstractAuthenticatableOIDCContext
A context to hold the response from the UserInfo endpoint.
-
-
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 com.nimbusds.openid.connect.sdk.UserInfoSuccessResponseuserInfoThe UserInfo response.
-
Constructor Summary
Constructors Constructor Description UserInfoResponseContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.nimbusds.openid.connect.sdk.UserInfoSuccessResponsegetUserInfo()Get the user info response.UserInfoResponseContextsetUserInfo(com.nimbusds.openid.connect.sdk.UserInfoSuccessResponse info)Set the user info response.-
Methods inherited from class net.shibboleth.idp.plugin.authn.oidc.rp.context.AbstractAuthenticatableOIDCContext
isAuthenticated, setAuthenticated
-
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
-
-
-
-
Method Detail
-
getUserInfo
@Nullable public com.nimbusds.openid.connect.sdk.UserInfoSuccessResponse getUserInfo()
Get the user info response.- Returns:
- the user info.
-
setUserInfo
public UserInfoResponseContext setUserInfo(@Nullable com.nimbusds.openid.connect.sdk.UserInfoSuccessResponse info)
Set the user info response.- Parameters:
info- the user info response.- Returns:
- this
-
-