Uses of Interface
org.eclipse.jetty.client.api.Authentication
-
Packages that use Authentication 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 in org.eclipse.jetty.client
Methods in org.eclipse.jetty.client that return Authentication Modifier and Type Method Description AuthenticationHttpAuthenticationStore. findAuthentication(java.lang.String type, java.net.URI uri, java.lang.String realm)Methods in org.eclipse.jetty.client with parameters of type Authentication Modifier and Type Method Description voidHttpAuthenticationStore. addAuthentication(Authentication authentication)voidHttpAuthenticationStore. removeAuthentication(Authentication authentication) -
Uses of Authentication in org.eclipse.jetty.client.api
Methods in org.eclipse.jetty.client.api that return Authentication Modifier and Type Method Description AuthenticationAuthenticationStore. findAuthentication(java.lang.String type, java.net.URI uri, java.lang.String realm)Returns the authentication that matches the given type (for example, "Basic" or "Digest"), the given request URI and the given realm.Methods in org.eclipse.jetty.client.api with parameters of type Authentication Modifier and Type Method Description voidAuthenticationStore. addAuthentication(Authentication authentication)voidAuthenticationStore. removeAuthentication(Authentication authentication) -
Uses of Authentication in org.eclipse.jetty.client.util
Classes in org.eclipse.jetty.client.util that implement Authentication Modifier and Type Class Description classAbstractAuthenticationclassBasicAuthenticationImplementation of the HTTP "Basic" authentication defined in RFC 2617.classDigestAuthenticationImplementation of the HTTP "Digest" authentication defined in RFC 2617.classSPNEGOAuthenticationImplementation of the SPNEGO (or "Negotiate") authentication defined in RFC 4559.
-