Package oracle.stellent.ridc
Class IdcClient<TConfig extends IdcClientConfig,TProtocol extends Protocol,TConnection extends Connection>
java.lang.Object
oracle.stellent.ridc.IdcClient<TConfig,TProtocol,TConnection>
- Direct Known Subclasses:
IdcHttpClient
,IntradocClient
,JaxWSClient
@Exported
public abstract class IdcClient<TConfig extends IdcClientConfig,TProtocol extends Protocol,TConnection extends Connection>
extends Object
Represents a connection to a single Content Server.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
IdcClient
(IdcClientManager clientManager, TConfig clientConfig) -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract ConnectionManager<TConnection,
TConfig> Create the connection managerprotected ConnectionPool<TConnection>
protected abstract TProtocol
createProtocol
(ServiceRequest<TConnection> serviceRequest) Create the protocol to handle the requestprotected ServiceRequest<TConnection>
createRequest
(IdcContext userContext, DataBinder dataBinder, TConnection connection, IdcRequestConfig requestConfig) Create the service request objectprotected ServiceResponse
createResponse
(ServiceRequest<TConnection> request, Protocol protocol, ServiceResponse response) Analyze the response from the protocol and returnvoid
Initialize the client.boolean
isCompatible
(String version) Tests to see if version of RIDC library is compatible with requested versionboolean
void
logout
(IdcContext userContext) Logoutvoid
logout
(IdcContext userContext, IdcRequestConfig requestConfig) LogoutsendRequest
(IdcContext userContext, DataBinder dataBinder) Execute the request; sends the request to the Content Server and reads the response.sendRequest
(IdcContext userContext, DataBinder dataBinder, IdcRequestConfig requestConfig) Execute the request; sends the request to the Content Server and reads the response.void
setDataFactory
(DataFactory dataFactory) Set the data factory for this clientvoid
setInitialized
(boolean initialized)
-
Constructor Details
-
IdcClient
-
-
Method Details
-
setInitialized
public void setInitialized(boolean initialized) -
initialize
Initialize the client. This should be called before any calls to other public methods in the client.- Throws:
IdcClientException
-
isInitialized
public boolean isInitialized()- Returns:
- true if this client has been successfully initialized
-
getClientManager
- Returns:
- the IdcClientManager used when the class was created
-
getDataFactory
- Returns:
- the data factory used to create data objects for this client
-
createBinder
- Returns:
- a new data binder
-
setDataFactory
Set the data factory for this client- Parameters:
dataFactory
- the factory used to create the data model objects
-
getConfig
- Returns:
- the client configuration
-
getConnectionPool
- Returns:
- the threading model for this client
- Throws:
ProtocolException
- if the pool cannot be created
-
getConnectionManager
- Returns:
- the manager to create new protocol connections
-
sendRequest
public ServiceResponse sendRequest(IdcContext userContext, DataBinder dataBinder) throws IdcClientException Execute the request; sends the request to the Content Server and reads the response.- Parameters:
userContext
- the user contextdataBinder
- the data binder object- Returns:
- the response
- Throws:
IdcClientException
-
sendRequest
public ServiceResponse sendRequest(IdcContext userContext, DataBinder dataBinder, IdcRequestConfig requestConfig) throws IdcClientException Execute the request; sends the request to the Content Server and reads the response.- Parameters:
userContext
- the user contextdataBinder
- the data binder objectrequestConfig
- the request specific configuration / overrides- Returns:
- the response
- Throws:
IdcClientException
-
logout
Logout- Parameters:
userContext
- the user context- Throws:
IdcClientException
-
logout
public void logout(IdcContext userContext, IdcRequestConfig requestConfig) throws IdcClientException Logout- Parameters:
userContext
- the user contextrequestConfig
- the request specific configuration / overrides- Throws:
IdcClientException
-
createProtocol
protected abstract TProtocol createProtocol(ServiceRequest<TConnection> serviceRequest) throws ProtocolException Create the protocol to handle the request- Parameters:
serviceRequest
- the service request- Returns:
- the protocol handler
- Throws:
ProtocolException
-
createConnectionManager
Create the connection manager- Returns:
- a new connection manager
-
createRequest
protected ServiceRequest<TConnection> createRequest(IdcContext userContext, DataBinder dataBinder, TConnection connection, IdcRequestConfig requestConfig) Create the service request object- Parameters:
userContext
- the user contextdataBinder
- the data binderconnection
- the connectionrequestConfig
- the request specific configuration / overrides- Returns:
- a new service request object
-
createResponse
protected ServiceResponse createResponse(ServiceRequest<TConnection> request, Protocol protocol, ServiceResponse response) Analyze the response from the protocol and return- Parameters:
request
- the request objectprotocol
- the protocol handlerresponse
- the response from the protocol handler- Returns:
- the service response object to return to the user
-
createConnectionPool
- Returns:
- the threading model to use for this client
- Throws:
ProtocolException
- if the pool cannot be created
-
getVersion
- Returns:
- Version of RIDC library
-
isCompatible
Tests to see if version of RIDC library is compatible with requested version- Parameters:
version
- required version of library- Returns:
- true if library is compatible
-