Package org.apache.axis2.transport.http
Class HTTPAuthenticator
- java.lang.Object
-
- org.apache.axis2.transport.http.HTTPAuthenticator
-
- Direct Known Subclasses:
HttpTransportPropertiesImpl.Authenticator
public abstract class HTTPAuthenticator extends Object
-
-
Constructor Summary
Constructors Constructor Description HTTPAuthenticator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract ObjectgetAuthPolicyPref(String schema)ListgetAuthSchemes()StringgetDomain()StringgetHost()StringgetPassword()abstract intgetPort()booleangetPreemptiveAuthentication()abstract StringgetRealm()StringgetUsername()booleanisAllowedRetry()voidsetAllowedRetry(boolean allowedRetry)voidsetAuthSchemes(List authSchemes)voidsetDomain(String domain)voidsetHost(String host)voidsetPassword(String password)abstract voidsetPort(int port)voidsetPreemptiveAuthentication(boolean preemptive)abstract voidsetRealm(String realm)voidsetUsername(String username)
-
-
-
Method Detail
-
getPort
public abstract int getPort()
-
setPort
public abstract void setPort(int port)
-
getRealm
public abstract String getRealm()
-
setRealm
public abstract void setRealm(String realm)
-
getHost
public String getHost()
-
setHost
public void setHost(String host)
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
setPreemptiveAuthentication
public void setPreemptiveAuthentication(boolean preemptive)
-
getPreemptiveAuthentication
public boolean getPreemptiveAuthentication()
-
getDomain
public String getDomain()
-
setDomain
public void setDomain(String domain)
-
setAuthSchemes
public void setAuthSchemes(List authSchemes)
-
getAuthSchemes
public List getAuthSchemes()
-
setAllowedRetry
public void setAllowedRetry(boolean allowedRetry)
-
isAllowedRetry
public boolean isAllowedRetry()
-
-