Package oracle.stellent.ridc
Class IdcContext
java.lang.Object
oracle.stellent.ridc.IdcContext
Holds user-specific information needed to execute a Content Server service.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Http authentication schemastatic class
Form information to allow login to clients with form-based authentication -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
default encodingstatic final String
applications are using this!static IdcContext.LoginForm
standard form configuration for an application server JAAS loginstatic final String
default session ID cookie for Content Serverstatic IdcContext.LoginForm
standard form configuration for OAM SSOstatic IdcContext.LoginForm
standard form configuration for OIM SSOstatic final String
parameter name prefix for internal-use RIDC parameters stored in parameters mapstatic final String
old cookie name used on Content Server before revision 87672 in the 11.1.1.4.0 branch (8/16/2010)static final String
-
Constructor Summary
ConstructorsConstructorDescriptionIdcContext
(String user) IdcContext
(String user, char[] password) IdcContext
(String user, String password) Deprecated.IdcContext
(String user, Credentials credentials) Deprecated.IdcContext
(Credentials credentials) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a header to this requestvoid
Clear all cookiesvoid
clearHeader
(String name) Clear the specified headervoid
Clear the available headersvoid
Clear the available parametersRetrieve a cookie by nameRetrieve the cookies mapRetrieve the header value for the given namegetParameter
(String name) Retrieve the parameter value for the given namegetParameterAsString
(String name) Retreieve the parameter value for the given name as a StringRetrieve the parameters mapThe name of the session cookie.getUser()
boolean
void
recordImpersonatee
(String impersonatee) Record the name of the person being impersonated.Retrieve the name of the person recorded as being impersonated.void
setAuthScheme
(IdcContext.HttpAuthScheme authScheme) void
setCookies
(Map<String, RIDCCookie> cookies) Set the cookies to use for subsequent sendRequest() calls.void
setCredentials
(Credentials credentials) Set some credentials for this context.void
setEncoding
(String encoding) Set the encoding to usevoid
setLoginForm
(IdcContext.LoginForm loginForm) void
setParameter
(String name, Object value) Set a parameter into this requestvoid
setSessionCookie
(String sessionCookie) void
Deprecated.void
setUserAgent
(String userAgent)
-
Field Details
-
USER_AGENT
- See Also:
-
JSESSION_ID
default session ID cookie for Content Server- See Also:
-
UCM_SESSION_ID
old cookie name used on Content Server before revision 87672 in the 11.1.1.4.0 branch (8/16/2010)- See Also:
-
DEFAULT_ENCODING
default encoding- See Also:
-
RIDC_INTERNAL_PARAM_PREFIX
parameter name prefix for internal-use RIDC parameters stored in parameters map- See Also:
-
JAAS_FORM
standard form configuration for an application server JAAS login -
OAM_SSO_FORM
standard form configuration for OAM SSO -
OIM_SSO_FORM
standard form configuration for OIM SSO -
DEFAULT_USER
applications are using this!- See Also:
-
-
Constructor Details
-
IdcContext
public IdcContext() -
IdcContext
-
IdcContext
Deprecated. -
IdcContext
-
IdcContext
-
IdcContext
Deprecated.- Parameters:
user
-credentials
-- Throws:
IllegalArgumentException
- if the user doesn't match the credential's user
-
-
Method Details
-
getUser
- Returns:
- the user name
- Throws:
IllegalArgumentException
-
setUser
Deprecated.This method doesn't set the username and will throw an exception, do no use! Set the username in the appropriate credential class- Parameters:
user
- the user name- Throws:
IllegalArgumentException
-
retrieveImpersonatee
Retrieve the name of the person recorded as being impersonated.- Returns:
- the person being impersonated
-
recordImpersonatee
Record the name of the person being impersonated. This method does NOT setup/configure/enable impersonation! It is used only for logging/recording purposes.- Parameters:
impersonatee
- person being impersonated
-
hasCredentials
public boolean hasCredentials()- Returns:
- if the context object is associated with some credentials
-
getCredentials
- Returns:
- the credentials if available
-
setCredentials
Set some credentials for this context.- Parameters:
credentials
- the credentials
-
getEncoding
- Returns:
- the encoding to use for this context
-
setEncoding
Set the encoding to use- Parameters:
encoding
- the encoding
-
getUserAgent
- Returns:
- the user-agent value that is sent with this context
-
setUserAgent
- Parameters:
userAgent
- the user agent to use
-
getLoginForm
- Returns:
- the configured login form used for form-based authentication
-
setLoginForm
-
getAuthScheme
- Returns:
- the authentication scheme to use
-
setAuthScheme
-
getSessionCookie
The name of the session cookie. Some protocols utilize this value to track a specific cookie when sending requests to the Content Server.- Returns:
- the name of the cookie which stores the session token
-
setSessionCookie
-
addHeader
Add a header to this request- Parameters:
name
- the header namevalue
- the header value
-
getHeader
Retrieve the header value for the given name- Parameters:
name
- the header name- Returns:
- the value or null if not set
-
getHeaderNames
- Returns:
- a set of the header names
-
clearHeaders
public void clearHeaders()Clear the available headers -
clearHeader
Clear the specified header -
getHeaders
- Returns:
- a map of the header
-
setCookies
Set the cookies to use for subsequent sendRequest() calls.- Parameters:
cookies
- the cookie to leverage for new requests
-
getCookies
Retrieve the cookies map- Returns:
- the cookies to leverage for next request
-
getCookie
Retrieve a cookie by name- Parameters:
name
- the cookie name- Returns:
- the cookie or null if not found
-
getCookieNames
- Returns:
- a set of the configured cookies
-
clearCookies
public void clearCookies()Clear all cookies -
setParameter
Set a parameter into this request- Parameters:
name
- the header namevalue
- the header value
-
getParameter
Retrieve the parameter value for the given name- Parameters:
name
- the parameter name- Returns:
- the value or null if not set
-
getParameterAsString
Retreieve the parameter value for the given name as a String- Parameters:
name
- the parameter name- Returns:
- the String value or null if not set
-
getParameterNames
- Returns:
- a set of the parameter names
-
clearParameters
public void clearParameters()Clear the available parameters -
getParameters
Retrieve the parameters map- Returns:
- the map
-