Package oracle.stellent.ridc.common.http
Interface RIDCHttpPostMethod
- All Superinterfaces:
RIDCHttpMethod
- All Known Implementing Classes:
HttpOraclePostMethod
,HttpURLConnectionPostMethod
Generic interface for HTTP POST Method
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addLoginFormCredentials
(IdcContext.LoginForm loginForm, Credentials.BasicCredentials credentials) Add credentials for a login formvoid
addParameter
(String name, String value) Add a parameter to the requestvoid
setRequestEntity
(String content, String contentType, String encoding) Set request data for POST actionvoid
setRequestEntity
(List<RIDCHttpPart<?>> multipartParts, String encoding) Set multipart request data for POST actionMethods inherited from interface oracle.stellent.ridc.common.http.RIDCHttpMethod
addRequestHeader, execute, getResponseBodyAsStream, getResponseHeader, getResponseHeaders, getRidcClient, getStatusCode, getStatusLine, getURI, releaseConnection, setCookiePolicy, setFollowRedirects, setParameter, setQueryString, setRequestConfig, setRequestHeader, setServiceLog
-
Method Details
-
setRequestEntity
void setRequestEntity(String content, String contentType, String encoding) throws UnsupportedEncodingException Set request data for POST action- Parameters:
content
- the content to be postedcontentType
- the content typeencoding
- the content encoding- Throws:
UnsupportedEncodingException
-
setRequestEntity
void setRequestEntity(List<RIDCHttpPart<?>> multipartParts, String encoding) throws UnsupportedEncodingException, IOException Set multipart request data for POST action- Parameters:
multipartParts
- the content "parts" to be postedencoding
-- Throws:
UnsupportedEncodingException
IOException
-
addParameter
Add a parameter to the request- Parameters:
name
- parameter namevalue
- parameter value
-
addLoginFormCredentials
void addLoginFormCredentials(IdcContext.LoginForm loginForm, Credentials.BasicCredentials credentials) throws UnsupportedEncodingException Add credentials for a login form- Parameters:
loginForm
- the login formcredentials
- the login credentials- Throws:
UnsupportedEncodingException
-