Class AuthenticationStoreHolder
- java.lang.Object
-
- org.apache.solr.client.solrj.impl.AuthenticationStoreHolder
-
- All Implemented Interfaces:
org.eclipse.jetty.client.api.AuthenticationStore
public class AuthenticationStoreHolder extends Object implements org.eclipse.jetty.client.api.AuthenticationStore
-
-
Constructor Summary
Constructors Constructor Description AuthenticationStoreHolder()AuthenticationStoreHolder(org.eclipse.jetty.client.api.AuthenticationStore authenticationStore)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAuthentication(org.eclipse.jetty.client.api.Authentication authentication)voidaddAuthenticationResult(org.eclipse.jetty.client.api.Authentication.Result result)voidclearAuthenticationResults()voidclearAuthentications()org.eclipse.jetty.client.api.AuthenticationfindAuthentication(String type, URI uri, String realm)org.eclipse.jetty.client.api.Authentication.ResultfindAuthenticationResult(URI uri)voidremoveAuthentication(org.eclipse.jetty.client.api.Authentication authentication)voidremoveAuthenticationResult(org.eclipse.jetty.client.api.Authentication.Result result)voidupdateAuthenticationStore(org.eclipse.jetty.client.api.AuthenticationStore authenticationStore)
-
-
-
Method Detail
-
updateAuthenticationStore
public void updateAuthenticationStore(org.eclipse.jetty.client.api.AuthenticationStore authenticationStore)
-
addAuthentication
public void addAuthentication(org.eclipse.jetty.client.api.Authentication authentication)
- Specified by:
addAuthenticationin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
removeAuthentication
public void removeAuthentication(org.eclipse.jetty.client.api.Authentication authentication)
- Specified by:
removeAuthenticationin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
clearAuthentications
public void clearAuthentications()
- Specified by:
clearAuthenticationsin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
findAuthentication
public org.eclipse.jetty.client.api.Authentication findAuthentication(String type, URI uri, String realm)
- Specified by:
findAuthenticationin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
addAuthenticationResult
public void addAuthenticationResult(org.eclipse.jetty.client.api.Authentication.Result result)
- Specified by:
addAuthenticationResultin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
removeAuthenticationResult
public void removeAuthenticationResult(org.eclipse.jetty.client.api.Authentication.Result result)
- Specified by:
removeAuthenticationResultin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
clearAuthenticationResults
public void clearAuthenticationResults()
- Specified by:
clearAuthenticationResultsin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
findAuthenticationResult
public org.eclipse.jetty.client.api.Authentication.Result findAuthenticationResult(URI uri)
- Specified by:
findAuthenticationResultin interfaceorg.eclipse.jetty.client.api.AuthenticationStore
-
-