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 Object
getAuthPolicyPref(String schema)
List
getAuthSchemes()
String
getDomain()
String
getHost()
String
getPassword()
abstract int
getPort()
boolean
getPreemptiveAuthentication()
abstract String
getRealm()
String
getUsername()
boolean
isAllowedRetry()
void
setAllowedRetry(boolean allowedRetry)
void
setAuthSchemes(List authSchemes)
void
setDomain(String domain)
void
setHost(String host)
void
setPassword(String password)
abstract void
setPort(int port)
void
setPreemptiveAuthentication(boolean preemptive)
abstract void
setRealm(String realm)
void
setUsername(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()
-
-