|
From: <cy...@us...> - 2003-07-18 14:53:33
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging
In directory sc8-pr-cvs1:/tmp/cvs-serv25300
Modified Files:
EbxmlMessage.java
Log Message:
Add getMimeHeaders() method with no argument.
Index: EbxmlMessage.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/EbxmlMessage.java,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** EbxmlMessage.java 16 Jul 2003 08:54:10 -0000 1.31
--- EbxmlMessage.java 18 Jul 2003 14:53:26 -0000 1.32
***************
*** 1063,1067 ****
/**
* Gets the MIME headers of this ebXML message
! *
* @return the MIME headers of this ebXML message
*/
--- 1063,1081 ----
/**
* Gets the MIME headers of this ebXML message
! *
! * @return the MIME headers of this ebXML message
! */
! public Map getMimeHeaders() throws IOException, SOAPException {
! return getMimeHeaders(Constants.DEFAULT_CONTENT_TRANSFER_ENCODING,
! Constants.DEFAULT_CONTENT_TRANSFER_ENCODING);
! }
!
! /**
! * Gets the MIME headers of this ebXML message
! *
! * @param soapEncoding content transfer encoding to be applied to SOAP
! * part when computing length
! * @param payloadEncoding content transfer encoding to be applied to
! * payload when computing length
* @return the MIME headers of this ebXML message
*/
***************
*** 1103,1107 ****
*
* @param out <code>OutputStream</code> to write the message to.
! * @param encoding content transfer encoding to be applied to payload
* @param getLengthOnly get length only and do no actual serialization
* @return the content length of the serialization
--- 1117,1122 ----
*
* @param out <code>OutputStream</code> to write the message to.
! * @param soapEncoding content transfer encoding to be applied to SOAPPart
! * @param payloadEncoding content transfer encoding to be applied to payload
* @param getLengthOnly get length only and do no actual serialization
* @return the content length of the serialization
|