Package oracle.stellent.ridc.common.http
Interface RIDCHttpClient
- All Known Implementing Classes:
HttpOracleClient
,HttpURLConnectionClient
@Concealed
public interface RIDCHttpClient
Http Client for RIDC connections
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addCookie
(RIDCCookie cookie) Add cookie to the connectionvoid
clear()
Clear the params and headers from the connectionGet the cookies from the connectionReturns the underlying client objectgetGetMethod
(String url) Get the method to execute for HTTP GETgetPostMethod
(String url) Get the method to execute for HTTP POSTvoid
Reset the state of the connectionvoid
setAuthenticationPreemptive
(boolean b) Set authentication preemptivevoid
setCredentials
(String scope, Credentials idcCredentials) Set credentials for the connectionvoid
setProxy
(String proxyHost, int proxyPort, String proxyUsername, String proxyPassword, String proxyRealm) Set proxy for the connectionvoid
setSocketTimeout
(int socketTimeout) Set the socket timeout
-
Method Details
-
addCookie
Add cookie to the connection- Parameters:
cookie
-
-
clear
void clear()Clear the params and headers from the connection -
getCookies
List<RIDCCookie> getCookies()Get the cookies from the connection- Returns:
- list of cookies
-
resetState
void resetState()Reset the state of the connection -
setAuthenticationPreemptive
void setAuthenticationPreemptive(boolean b) Set authentication preemptive- Parameters:
b
-
-
setCredentials
Set credentials for the connection- Parameters:
scope
-idcCredentials
-
-
setProxy
void setProxy(String proxyHost, int proxyPort, String proxyUsername, String proxyPassword, String proxyRealm) Set proxy for the connection- Parameters:
proxyHost
- proxy host nameproxyPort
- proxy host portproxyUsername
- proxy user name, null if not requiredproxyPassword
- proxy user password, null if not requiredproxyRealm
- proxy realm, null if not required
-
setSocketTimeout
void setSocketTimeout(int socketTimeout) Set the socket timeout- Parameters:
socketTimeout
- timeout value on milli seconds
-
getGetMethod
Get the method to execute for HTTP GET- Parameters:
url
- the url- Returns:
- the appropriate method implementation
-
getPostMethod
Get the method to execute for HTTP POST- Parameters:
url
- the url- Returns:
- the appropriate method implementation
-
getDelegateObject
Object getDelegateObject()Returns the underlying client object- Returns:
- underlying client object
-