Class HdaProtocol<TConnection extends Connection>
java.lang.Object
oracle.stellent.ridc.protocol.intradoc.HdaProtocol<TConnection>
- All Implemented Interfaces:
Protocol
- Direct Known Subclasses:
IntradocProtocol
,JaxWSProtocol
@Concealed
public abstract class HdaProtocol<TConnection extends Connection>
extends Object
implements Protocol
-
Nested Class Summary
Nested classes/interfaces inherited from interface oracle.stellent.ridc.protocol.Protocol
Protocol.NullHandlingStrategy
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final int
static final String
Fields inherited from interface oracle.stellent.ridc.protocol.Protocol
IDC_HEADER_PREFIX, IDC_NULL_HANDLING, NULL_VALUE_OMIT, NULL_VALUE_TREAT_AS_EMPTYSTRING, NULL_VALUE_TREAT_AS_LOWERCASENULL
-
Constructor Summary
ConstructorsConstructorDescriptionHdaProtocol
(IdcClient client, DataFactory dataFactory, ServiceRequest<TConnection> serviceRequest) Constructor -
Method Summary
Modifier and TypeMethodDescriptiongetAdditionalHeaders
(DataBinder binder) Returns a properties object with headers contained in binder.The headersprotected String
getHeadersAsString
(Map<String, String> headerMap) Get all the headers in a hda-compliant (EOL seperated) stringprotected String
getHeaderString
(boolean isMultiPart, long contentLength, Map<String, String> additionalHeaders) protected InputStream
Creates a stream to the next HDA message.protected boolean
Read the headers (Http format) from the content serverReads the next message, if a message is not completely received within the timeout specified an exception is thrown.void
setFilterManager
(IdcFilterManager filterManager) void
setHeaderCharset
(String headerCharset) protected void
writeMultipartRequest
(Map<String, String> additionalHeaders) Special handling for the multipart messagevoid
Sends the specified message to the Content Server.protected void
writeStandardRequest
(Map<String, String> additionalHeaders)
-
Field Details
-
HEADER_ENCODING_HEADER
- See Also:
-
CONTENT_TYPE_HEADER
- See Also:
-
USER_AGENT_HEADER
- See Also:
-
HTTP_HOST_HEADER
- See Also:
-
CONTENT_LENGTH_HEADER
- See Also:
-
REMOTE_USER_HEADER
- See Also:
-
REQUEST_METHOD_HEADER
- See Also:
-
END_HEADERS
- See Also:
-
HEADER_LINE
- See Also:
-
END_SERVER_HEADERS
- See Also:
-
END_MESSAGE
- See Also:
-
END_HEADER_LINE
- See Also:
-
BEGIN_HDA
- See Also:
-
BEGIN_HDA_NO_HEADER
- See Also:
-
END_HDA
- See Also:
-
HTTP_HOST
- See Also:
-
RETRY_COUNT
public static final int RETRY_COUNT- See Also:
-
CONTENT_LENGTH
- See Also:
-
IDC_FILE
- See Also:
-
-
Constructor Details
-
HdaProtocol
public HdaProtocol(IdcClient client, DataFactory dataFactory, ServiceRequest<TConnection> serviceRequest) Constructor- Parameters:
dataFactory
- the data factoryserviceRequest
- the service request
-
-
Method Details
-
getDataFactory
-
getServiceRequest
-
getConnection
-
getResponseStream
- Throws:
IOException
-
getRequestStream
- Throws:
IOException
-
getHeaderCharset
- Returns:
- charset used to decode the header
-
setHeaderCharset
-
getEncoding
- Returns:
- the encoding to use for the message
-
getClient
-
setFilterManager
- Specified by:
setFilterManager
in interfaceProtocol
-
getFilterManager
- Specified by:
getFilterManager
in interfaceProtocol
-
writeRequest
Sends the specified message to the Content Server.- Specified by:
writeRequest
in interfaceProtocol
- Throws:
ProtocolException
- If an error occurs during the send.
-
readResponse
Reads the next message, if a message is not completely received within the timeout specified an exception is thrown.- Specified by:
readResponse
in interfaceProtocol
- Returns:
- The received message.
- Throws:
ProtocolException
- If an error occurs or timeout is reached.
-
writeStandardRequest
- Parameters:
additionalHeaders
-- Throws:
IOException
-
writeMultipartRequest
Special handling for the multipart message- Parameters:
additionalHeaders
- additional headers to send- Throws:
IOException
-
getAdditionalHeaders
Returns a properties object with headers contained in binder.- Parameters:
binder
- The binder to look for additional headers.- Returns:
- The created properties object.
-
getHeaderString
-
getHeadersAsString
Get all the headers in a hda-compliant (EOL seperated) string- Parameters:
headerMap
- a header map- Returns:
- a formatted string of the header
-
readHeaders
Read the headers (Http format) from the content server- Returns:
- true if successful, false otherwise
- Throws:
IOException
-
readHdaStream
Creates a stream to the next HDA message. If no content length is set, the stream is read into memory until the HDA message is closed.- Returns:
- the message to consume via a stream
- Throws:
IOException
- If an error occurs or timeout is reached.
-
getHeaders
The headers- Returns:
- the headers
-