Uses of Interface
org.eclipse.jetty.client.api.Authentication.Result
-
Packages that use Authentication.Result Package Description org.eclipse.jetty.client Jetty Client : Implementation and Core Classes This package provides APIs, utility classes and an implementation of an asynchronous HTTP client.org.eclipse.jetty.client.api Jetty Client : API Classesorg.eclipse.jetty.client.util Jetty Client : Utility Classes -
-
Uses of Authentication.Result in org.eclipse.jetty.client
Methods in org.eclipse.jetty.client that return Authentication.Result Modifier and Type Method Description Authentication.Result
HttpAuthenticationStore. findAuthenticationResult(java.net.URI uri)
Methods in org.eclipse.jetty.client with parameters of type Authentication.Result Modifier and Type Method Description void
HttpAuthenticationStore. addAuthenticationResult(Authentication.Result result)
void
HttpAuthenticationStore. removeAuthenticationResult(Authentication.Result result)
-
Uses of Authentication.Result in org.eclipse.jetty.client.api
Methods in org.eclipse.jetty.client.api that return Authentication.Result Modifier and Type Method Description Authentication.Result
Authentication. authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context)
Executes the authentication mechanism for the given request, returning aAuthentication.Result
that can be used to actually authenticate the request viaapply(Request)
.Authentication.Result
AuthenticationStore. findAuthenticationResult(java.net.URI uri)
Returns anAuthentication.Result
that matches the given URI, or null if noAuthentication.Result
s match the given URI.Methods in org.eclipse.jetty.client.api with parameters of type Authentication.Result Modifier and Type Method Description void
AuthenticationStore. addAuthenticationResult(Authentication.Result result)
void
AuthenticationStore. removeAuthenticationResult(Authentication.Result result)
-
Uses of Authentication.Result in org.eclipse.jetty.client.util
Classes in org.eclipse.jetty.client.util that implement Authentication.Result Modifier and Type Class Description static class
BasicAuthentication.BasicResult
Basic authentication result.static class
SPNEGOAuthentication.SPNEGOResult
Methods in org.eclipse.jetty.client.util that return Authentication.Result Modifier and Type Method Description Authentication.Result
BasicAuthentication. authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context)
Authentication.Result
DigestAuthentication. authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context)
Authentication.Result
SPNEGOAuthentication. authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context)
-