Package org.eclipse.jetty.client.util
Class SPNEGOAuthentication.SPNEGOResult
- java.lang.Object
-
- org.eclipse.jetty.client.util.SPNEGOAuthentication.SPNEGOResult
-
- All Implemented Interfaces:
Authentication.Result
- Enclosing class:
- SPNEGOAuthentication
@Deprecated(since="2021-05-27") public static class SPNEGOAuthentication.SPNEGOResult extends java.lang.Object implements Authentication.Result
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description SPNEGOResult(java.net.URI uri, java.lang.String token)
Deprecated.SPNEGOResult(java.net.URI uri, HttpHeader header, java.lang.String token)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
apply(Request request)
Deprecated.Applies the authentication result to the given request.java.net.URI
getURI()
Deprecated.
-
-
-
Constructor Detail
-
SPNEGOResult
public SPNEGOResult(java.net.URI uri, java.lang.String token)
Deprecated.
-
SPNEGOResult
public SPNEGOResult(java.net.URI uri, HttpHeader header, java.lang.String token)
Deprecated.
-
-
Method Detail
-
getURI
public java.net.URI getURI()
Deprecated.- Specified by:
getURI
in interfaceAuthentication.Result
- Returns:
- the URI of the request that has been used to generate this
Authentication.Result
-
apply
public void apply(Request request)
Deprecated.Description copied from interface:Authentication.Result
Applies the authentication result to the given request. Typically, aAuthorization
header is added to the request, with the right information to successfully authenticate at the server.- Specified by:
apply
in interfaceAuthentication.Result
- Parameters:
request
- the request to authenticate
-
-