Class HttpCallback
java.lang.Object
com.sun.identity.authentication.spi.HttpCallback
- All Implemented Interfaces:
Serializable
,Callback
HttpCallback
class implements Callback
and is used by the authentication module with HTTP protocol based
handshaking negotiation.- See Also:
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionHttpCallback
(String authorizationHeader, String negotiationHeader, String errorCode) Creates aHttpCallback
object.HttpCallback
(String authRHeader, String negoName, String negoValue, int errorCode) Creates aHttpCallback
object. -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpCallback.Builder
builder()
Returns a newHttpCallback.Builder
object to use for construction of aHttpCallback
.Returns the authorization string.Returns the authorization header string.int
Returns the negotiation error code.Returns the negotiation header name.Returns the negotiation header value.boolean
Returnstrue
if the callback is for HTTPBasic.boolean
Returnstrue
if the callback is for WindowsDesktopSSO.void
setAuthorization
(String authorization) Set the authorization string to aHttpCallback
object.
-
Constructor Details
-
HttpCallback
@Supported public HttpCallback(String authorizationHeader, String negotiationHeader, String errorCode) Creates aHttpCallback
object.- Parameters:
authorizationHeader
- Header name for the authorization string.negotiationHeader
- Negotiation header string.errorCode
- Error code set in the header for negotiation.
-
HttpCallback
@Supported public HttpCallback(String authRHeader, String negoName, String negoValue, int errorCode) Creates aHttpCallback
object. The negotiation header is constructed using the negotiation name and value in the formatnegoName:negoValue
.- Parameters:
authRHeader
- Header name for the authorization string.negoName
- Negotiation name in the negotiation header.negoValue
- Negotiation value in the negotiation header.errorCode
- Error code set in the header for negotiation.
-
-
Method Details
-
getAuthorizationHeader
Returns the authorization header string.- Returns:
- the authorization header string.
-
getNegotiationHeaderName
Returns the negotiation header name.- Returns:
- the negotiation header name.
-
getNegotiationHeaderValue
Returns the negotiation header value.- Returns:
- the negotiation header value.
-
getNegotiationCode
Returns the negotiation error code.- Returns:
- the negotiation error code.
-
getAuthorization
Returns the authorization string.- Returns:
- the authorization string.
-
setAuthorization
Set the authorization string to aHttpCallback
object.- Parameters:
authorization
- The value of the Authorization header.
-
isForHTTPBasic
Returnstrue
if the callback is for HTTPBasic. -
isForWindowsDesktopSSO
Returnstrue
if the callback is for WindowsDesktopSSO. -
builder
Returns a newHttpCallback.Builder
object to use for construction of aHttpCallback
.- Returns:
- a new
HttpCallback.Builder
object.
-