Class EmbeddedLoginNotAllowedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.springframework.security.core.AuthenticationException
-
- com.broadleafcommerce.auth.user.session.embedded.EmbeddedLoginNotAllowedException
-
- All Implemented Interfaces:
Serializable
public class EmbeddedLoginNotAllowedException extends org.springframework.security.core.AuthenticationException
Indicates that there was an attempt to login a user using embedded login when theAuthorizationServer
receiving the request did not allow embedded login.- Author:
- Nathan Moore (nathandmoore)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmbeddedLoginNotAllowedException(String authServerId, String clientId, String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAuthServerId()
ID of theAuthorizationServer
that received the request.String
getClientId()
ID of theAuthorizedClient
that received the request.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getAuthServerId
public String getAuthServerId()
ID of theAuthorizationServer
that received the request.
-
getClientId
public String getClientId()
ID of theAuthorizedClient
that received the request.
-
-