Uses of Class
com.broadleafcommerce.auth.client.web.repo.AuthorizationRequestWrapper
-
Packages that use AuthorizationRequestWrapper Package Description com.broadleafcommerce.auth.client.web.repo -
-
Uses of AuthorizationRequestWrapper in com.broadleafcommerce.auth.client.web.repo
Methods in com.broadleafcommerce.auth.client.web.repo that return AuthorizationRequestWrapper Modifier and Type Method Description AuthorizationRequestWrapper
AuthorizationRequestWrapper.AuthorizationRequestWrapperBuilder. build()
protected AuthorizationRequestWrapper
BroadleafAuthorizationRequestRepository. deserializeCookie(String cookie)
Deserialize a cookie value into anAuthorizationRequestWrapper
.protected AuthorizationRequestWrapper
BroadleafAuthorizationRequestRepository. readAuthRequestWrapperFromCookie(javax.servlet.http.HttpServletRequest request)
protected AuthorizationRequestWrapper
BroadleafAuthorizationRequestRepository. wrapAuthorizationRequest(org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest authorizationRequest, String clientId)
Wrap aOAuth2AuthorizationRequest
in aAuthorizationRequestWrapper
with the current client idprotected AuthorizationRequestWrapper
BroadleafAuthorizationRequestRepository. wrapAuthRequest(org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest authorizationRequest)
Wrap the givenOAuth2AuthorizationRequest
into anAuthorizationRequestWrapper
TheAuthorizationRequestWrapper
includes a blcClientId field, which is set from a request parameter.Methods in com.broadleafcommerce.auth.client.web.repo with parameters of type AuthorizationRequestWrapper Modifier and Type Method Description protected org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest
BroadleafAuthorizationRequestRepository. buildOAuth2AuthorizationRequest(AuthorizationRequestWrapper authorizationRequestWrapper)
Build aOAuth2AuthorizationRequest
from aAuthorizationRequestWrapper
.protected @NotNull javax.servlet.http.Cookie
BroadleafAuthorizationRequestRepository. saveAuthRequestWrapper(AuthorizationRequestWrapper authorizationRequestWrapper)
Deprecated.protected @NotNull org.springframework.http.ResponseCookie
BroadleafAuthorizationRequestRepository. saveAuthRequestWrapperResponseCookie(AuthorizationRequestWrapper authorizationRequestWrapper)
protected String
BroadleafAuthorizationRequestRepository. serializeAuthRequest(AuthorizationRequestWrapper authorizationRequestWrapper)
Serialize the givenAuthorizationRequestWrapper
into a String.
-