Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging
In directory sc8-pr-cvs1:/tmp/cvs-serv28830/src/hk/hku/cecid/phoenix/message/packaging
Modified Files:
AckRequested.java Acknowledgment.java
AttachmentDataSource.java AttachmentResolver.java
BodyElement.java EbxmlMessage.java EbxmlMessageFactory.java
Element.java ErrorList.java ExtensionElement.java
ExtensionElementImpl.java HeaderContainer.java
HeaderElement.java Manifest.java MessageHeader.java
MessageOrder.java PKISignatureImpl.java
PartialInputStream.java PayloadContainer.java Reference.java
Signature.java SignatureReference.java StatusRequest.java
StatusResponse.java SyncReply.java
Log Message:
Remove all unused imports.
convert all wildcard imports to non-wildcard imports.
Index: AckRequested.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/AckRequested.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** AckRequested.java 18 Jun 2003 09:14:43 -0000 1.7
--- AckRequested.java 11 Dec 2003 06:41:29 -0000 1.8
***************
*** 72,76 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
-
/**
* An ebXML <code>AckRequested</code> in the SOAP Header of a
--- 72,75 ----
***************
*** 80,84 ****
* @version $Revision$
*/
-
public class AckRequested extends HeaderElement {
--- 79,82 ----
Index: Acknowledgment.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/Acknowledgment.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Acknowledgment.java 17 Nov 2003 02:09:33 -0000 1.9
--- Acknowledgment.java 11 Dec 2003 06:41:29 -0000 1.10
***************
*** 77,81 ****
import javax.xml.soap.SOAPException;
import javax.xml.soap.Text;
-
/**
* An ebXML <code>Acknowledgment</code> in the SOAP Header of a
--- 77,80 ----
***************
*** 85,89 ****
* @version $Revision$
*/
-
public class Acknowledgment extends HeaderElement {
--- 84,87 ----
Index: AttachmentDataSource.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/AttachmentDataSource.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** AttachmentDataSource.java 9 Dec 2003 08:59:10 -0000 1.10
--- AttachmentDataSource.java 11 Dec 2003 06:41:29 -0000 1.11
***************
*** 69,77 ****
package hk.hku.cecid.phoenix.message.packaging;
! import java.io.*;
import javax.activation.DataSource;
import javax.mail.MessagingException;
import javax.mail.internet.MimeUtility;
-
/**
* This is an implementation of <code>javax.activation.DataSource</code>
--- 69,82 ----
package hk.hku.cecid.phoenix.message.packaging;
! import java.io.ByteArrayInputStream;
! import java.io.ByteArrayOutputStream;
! import java.io.File;
! import java.io.FileInputStream;
! import java.io.IOException;
! import java.io.InputStream;
! import java.io.OutputStream;
import javax.activation.DataSource;
import javax.mail.MessagingException;
import javax.mail.internet.MimeUtility;
/**
* This is an implementation of <code>javax.activation.DataSource</code>
***************
*** 81,85 ****
* @version $Revision$
*/
-
public class AttachmentDataSource implements DataSource {
--- 86,89 ----
Index: AttachmentResolver.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/AttachmentResolver.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AttachmentResolver.java 9 Apr 2003 07:48:18 -0000 1.3
--- AttachmentResolver.java 11 Dec 2003 06:41:29 -0000 1.4
***************
*** 69,77 ****
package hk.hku.cecid.phoenix.message.packaging;
- import org.w3c.dom.Attr;
import org.apache.xml.security.signature.XMLSignatureInput;
import org.apache.xml.security.utils.resolver.ResourceResolverException;
import org.apache.xml.security.utils.resolver.ResourceResolverSpi;
!
/**
* A <code>ResourceResolver</code> implementation used by Apache Security
--- 69,76 ----
package hk.hku.cecid.phoenix.message.packaging;
import org.apache.xml.security.signature.XMLSignatureInput;
import org.apache.xml.security.utils.resolver.ResourceResolverException;
import org.apache.xml.security.utils.resolver.ResourceResolverSpi;
! import org.w3c.dom.Attr;
/**
* A <code>ResourceResolver</code> implementation used by Apache Security
***************
*** 85,89 ****
* @version $Revision$
*/
-
class AttachmentResolver extends ResourceResolverSpi {
--- 84,87 ----
Index: BodyElement.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/BodyElement.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** BodyElement.java 10 Jun 2003 02:22:48 -0000 1.6
--- BodyElement.java 11 Dec 2003 06:41:29 -0000 1.7
***************
*** 72,76 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
-
/**
* An <code>ExtensionElement</code> in the SOAP Body of a
--- 72,75 ----
***************
*** 80,84 ****
* @version $Revision$
*/
-
class BodyElement extends ExtensionElementImpl {
--- 79,82 ----
Index: EbxmlMessage.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/EbxmlMessage.java,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** EbxmlMessage.java 9 Dec 2003 08:59:10 -0000 1.38
--- EbxmlMessage.java 11 Dec 2003 06:41:29 -0000 1.39
***************
*** 67,71 ****
*/
package hk.hku.cecid.phoenix.message.packaging;
! import java.io.*;
import java.util.ArrayList;
import java.util.HashMap;
--- 67,82 ----
*/
package hk.hku.cecid.phoenix.message.packaging;
! import hk.hku.cecid.phoenix.message.handler.Constants;
! import hk.hku.cecid.phoenix.message.handler.MessageServer;
! import hk.hku.cecid.phoenix.message.handler.MessageServerException;
! import hk.hku.cecid.phoenix.message.packaging.validation.EbxmlValidationException;
! import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
! import hk.hku.cecid.phoenix.pki.CertResolver;
! import java.io.ByteArrayInputStream;
! import java.io.ByteArrayOutputStream;
! import java.io.File;
! import java.io.IOException;
! import java.io.InputStream;
! import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
***************
*** 75,86 ****
import javax.activation.FileDataSource;
import javax.mail.internet.MimeUtility;
! import javax.xml.soap.*;
! import hk.hku.cecid.phoenix.message.handler.Constants;
! import hk.hku.cecid.phoenix.message.handler.MessageServer;
! import hk.hku.cecid.phoenix.message.handler.MessageServerException;
! import hk.hku.cecid.phoenix.message.packaging.validation.EbxmlValidationException;
! import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
! import hk.hku.cecid.phoenix.pki.CertResolver;
!
/**
* A representation of an ebXML message. An ebXML message conforms to the
--- 86,97 ----
import javax.activation.FileDataSource;
import javax.mail.internet.MimeUtility;
! import javax.xml.soap.AttachmentPart;
! import javax.xml.soap.MessageFactory;
! import javax.xml.soap.MimeHeader;
! import javax.xml.soap.MimeHeaders;
! import javax.xml.soap.SOAPEnvelope;
! import javax.xml.soap.SOAPException;
! import javax.xml.soap.SOAPMessage;
! import javax.xml.soap.SOAPPart;
/**
* A representation of an ebXML message. An ebXML message conforms to the
***************
*** 92,96 ****
* @version $Revision$
*/
-
public class EbxmlMessage {
--- 103,106 ----
Index: EbxmlMessageFactory.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/EbxmlMessageFactory.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** EbxmlMessageFactory.java 9 Apr 2003 07:48:20 -0000 1.6
--- EbxmlMessageFactory.java 11 Dec 2003 06:41:29 -0000 1.7
***************
*** 69,79 ****
package hk.hku.cecid.phoenix.message.packaging;
- import java.io.InputStream;
import java.io.IOException;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.MimeHeaders;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPMessage;
-
/**
* Implementation of <code>javax.xml.soap.MessageFactory</code>
--- 69,78 ----
package hk.hku.cecid.phoenix.message.packaging;
import java.io.IOException;
+ import java.io.InputStream;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.MimeHeaders;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPMessage;
/**
* Implementation of <code>javax.xml.soap.MessageFactory</code>
***************
*** 82,86 ****
* @version $Revision$
*/
-
public class EbxmlMessageFactory extends MessageFactory {
--- 81,84 ----
Index: Element.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/Element.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Element.java 16 Jul 2003 08:54:10 -0000 1.4
--- Element.java 11 Dec 2003 06:41:29 -0000 1.5
***************
*** 73,77 ****
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPException;
-
/**
* Encapsulation of a <code>javax.xml.soap.SOAPElement</code>
--- 73,76 ----
***************
*** 80,84 ****
* @version $Revision$
*/
-
interface Element {
--- 79,82 ----
Index: ErrorList.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/ErrorList.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** ErrorList.java 3 Jul 2003 02:31:17 -0000 1.10
--- ErrorList.java 11 Dec 2003 06:41:29 -0000 1.11
***************
*** 69,72 ****
--- 69,73 ----
package hk.hku.cecid.phoenix.message.packaging;
+ import hk.hku.cecid.phoenix.message.packaging.validation.EbxmlValidationException;
import java.util.ArrayList;
import java.util.Iterator;
***************
*** 75,80 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
- import hk.hku.cecid.phoenix.message.packaging.validation.EbxmlValidationException;
-
/**
* An ebXML <code>ErrorList</code> in the SOAP Header of a
--- 76,79 ----
***************
*** 84,88 ****
* @version $Revision$
*/
-
public class ErrorList extends HeaderElement {
--- 83,86 ----
Index: ExtensionElement.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/ExtensionElement.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ExtensionElement.java 9 Apr 2003 07:48:21 -0000 1.9
--- ExtensionElement.java 11 Dec 2003 06:41:29 -0000 1.10
***************
*** 71,75 ****
import java.util.Iterator;
import javax.xml.soap.SOAPException;
-
/**
* An <code>ExtensionElement</code> in the <code>HeaderContainer</code>
--- 71,74 ----
***************
*** 78,82 ****
* @version $Revision$
*/
-
interface ExtensionElement extends Element {
--- 77,80 ----
Index: ExtensionElementImpl.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/ExtensionElementImpl.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ExtensionElementImpl.java 16 Jul 2003 08:54:10 -0000 1.9
--- ExtensionElementImpl.java 11 Dec 2003 06:41:29 -0000 1.10
***************
*** 71,76 ****
import java.util.ArrayList;
import java.util.Iterator;
! import javax.xml.soap.*;
!
/**
* An implementation of <code>ExtensionElement</code>.
--- 71,79 ----
import java.util.ArrayList;
import java.util.Iterator;
! import javax.xml.soap.Name;
! import javax.xml.soap.SOAPElement;
! import javax.xml.soap.SOAPEnvelope;
! import javax.xml.soap.SOAPException;
! import javax.xml.soap.SOAPHeaderElement;
/**
* An implementation of <code>ExtensionElement</code>.
***************
*** 79,83 ****
* @version $Revision$
*/
-
class ExtensionElementImpl implements ExtensionElement {
--- 82,85 ----
Index: HeaderContainer.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/HeaderContainer.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** HeaderContainer.java 10 Jun 2003 02:22:48 -0000 1.10
--- HeaderContainer.java 11 Dec 2003 06:41:29 -0000 1.11
***************
*** 72,77 ****
import java.util.ArrayList;
import java.util.Iterator;
! import javax.xml.soap.*;
!
/**
* An encapsulation of the Header Container of an <code>EbxmlMessage</code>.
--- 72,82 ----
import java.util.ArrayList;
import java.util.Iterator;
! import javax.xml.soap.Name;
! import javax.xml.soap.SOAPBody;
! import javax.xml.soap.SOAPElement;
! import javax.xml.soap.SOAPEnvelope;
! import javax.xml.soap.SOAPException;
! import javax.xml.soap.SOAPHeader;
! import javax.xml.soap.SOAPPart;
/**
* An encapsulation of the Header Container of an <code>EbxmlMessage</code>.
***************
*** 80,84 ****
* @version $Revision$
*/
-
class HeaderContainer {
--- 85,88 ----
Index: HeaderElement.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/HeaderElement.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** HeaderElement.java 17 Nov 2003 02:09:33 -0000 1.8
--- HeaderElement.java 11 Dec 2003 06:41:29 -0000 1.9
***************
*** 72,76 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
-
/**
* An <code>ExtensionElement</code> in the SOAP Header of a
--- 72,75 ----
***************
*** 80,84 ****
* @version $Revision$
*/
-
class HeaderElement extends ExtensionElementImpl {
--- 79,82 ----
Index: Manifest.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/Manifest.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Manifest.java 10 Jun 2003 02:22:49 -0000 1.7
--- Manifest.java 11 Dec 2003 06:41:29 -0000 1.8
***************
*** 74,78 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
-
/**
* An ebXML <code>Manifest</code> in the SOAP Body of a
--- 74,77 ----
***************
*** 82,86 ****
* @version $Revision$
*/
-
public class Manifest extends BodyElement {
--- 81,84 ----
Index: MessageHeader.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/MessageHeader.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** MessageHeader.java 9 Dec 2003 08:59:10 -0000 1.14
--- MessageHeader.java 11 Dec 2003 06:41:29 -0000 1.15
***************
*** 69,83 ****
package hk.hku.cecid.phoenix.message.packaging;
import java.util.ArrayList;
! import java.util.Iterator;
import java.util.Date;
import java.util.TimeZone;
- import java.util.Calendar;
import javax.xml.soap.Name;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
- import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
-
/**
* An ebXML <code>MessageHeader</code> in the SOAP Header of a
--- 69,82 ----
package hk.hku.cecid.phoenix.message.packaging;
+ import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import java.util.ArrayList;
! import java.util.Calendar;
import java.util.Date;
+ import java.util.Iterator;
import java.util.TimeZone;
import javax.xml.soap.Name;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
/**
* An ebXML <code>MessageHeader</code> in the SOAP Header of a
***************
*** 87,91 ****
* @version $Revision$
*/
-
public class MessageHeader extends HeaderElement {
--- 86,89 ----
Index: MessageOrder.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/MessageOrder.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** MessageOrder.java 9 Dec 2003 08:59:10 -0000 1.6
--- MessageOrder.java 11 Dec 2003 06:41:29 -0000 1.7
***************
*** 69,79 ****
package hk.hku.cecid.phoenix.message.packaging;
import java.util.Iterator;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
- import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
- import hk.hku.cecid.phoenix.message.packaging.validation.EbxmlValidationException;
-
/**
* An ebXML <code>MessageOrder</code> in the SOAP Header of a
--- 69,78 ----
package hk.hku.cecid.phoenix.message.packaging;
+ import hk.hku.cecid.phoenix.message.packaging.validation.EbxmlValidationException;
+ import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import java.util.Iterator;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
/**
* An ebXML <code>MessageOrder</code> in the SOAP Header of a
***************
*** 83,87 ****
* @version $Revision$
*/
-
public class MessageOrder extends HeaderElement {
--- 82,85 ----
Index: PKISignatureImpl.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/PKISignatureImpl.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** PKISignatureImpl.java 19 Sep 2003 06:54:45 -0000 1.11
--- PKISignatureImpl.java 11 Dec 2003 06:41:29 -0000 1.12
***************
*** 69,74 ****
package hk.hku.cecid.phoenix.message.packaging;
- import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import hk.hku.cecid.phoenix.message.handler.ErrorMessages;
import hk.hku.cecid.phoenix.pki.ApacheXMLDSigner;
import hk.hku.cecid.phoenix.pki.CertResolver;
--- 69,76 ----
package hk.hku.cecid.phoenix.message.packaging;
import hk.hku.cecid.phoenix.message.handler.ErrorMessages;
+ import hk.hku.cecid.phoenix.message.packaging.Signature;
+ import hk.hku.cecid.phoenix.message.packaging.SignatureException;
+ import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import hk.hku.cecid.phoenix.pki.ApacheXMLDSigner;
import hk.hku.cecid.phoenix.pki.CertResolver;
***************
*** 76,86 ****
import hk.hku.cecid.phoenix.pki.SignException;
import hk.hku.cecid.phoenix.pki.VerifyException;
! import java.io.*;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.cert.X509Certificate;
import java.util.Iterator;
- import javax.xml.soap.*;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.transform.TransformerFactory;
import org.apache.log4j.Logger;
--- 78,93 ----
import hk.hku.cecid.phoenix.pki.SignException;
import hk.hku.cecid.phoenix.pki.VerifyException;
! import java.io.ByteArrayInputStream;
! import java.io.ByteArrayOutputStream;
! import java.io.FileInputStream;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.cert.X509Certificate;
import java.util.Iterator;
import javax.xml.parsers.DocumentBuilderFactory;
+ import javax.xml.soap.SOAPElement;
+ import javax.xml.soap.SOAPEnvelope;
+ import javax.xml.soap.SOAPException;
+ import javax.xml.soap.SOAPPart;
import javax.xml.transform.TransformerFactory;
import org.apache.log4j.Logger;
***************
*** 92,96 ****
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.NodeList;
-
/**
* An implementation of ebXML <code>Signature</code>, making use
--- 99,102 ----
***************
*** 100,104 ****
* @version $Revision$
*/
-
class PKISignatureImpl extends Signature {
--- 106,109 ----
Index: PartialInputStream.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/PartialInputStream.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PartialInputStream.java 9 Dec 2003 08:59:10 -0000 1.4
--- PartialInputStream.java 11 Dec 2003 06:41:30 -0000 1.5
***************
*** 68,74 ****
package hk.hku.cecid.phoenix.message.packaging;
import java.io.IOException;
-
import java.io.InputStream;
-
/**
* This is an implementation of <code>java.io.InputStream</code> that
--- 68,72 ----
***************
*** 78,82 ****
* @version $Revision$
*/
-
class PartialInputStream extends InputStream {
private final InputStream in;
--- 76,79 ----
Index: PayloadContainer.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/PayloadContainer.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** PayloadContainer.java 31 Jul 2003 06:55:59 -0000 1.11
--- PayloadContainer.java 11 Dec 2003 06:41:30 -0000 1.12
***************
*** 74,78 ****
import javax.activation.DataHandler;
import javax.activation.DataSource;
-
/**
* <P>An encapsulation of the payload container in an <code>EbxmlMessage</code>
--- 74,77 ----
***************
*** 101,105 ****
* @version $Revision$
*/
-
public class PayloadContainer {
--- 100,103 ----
Index: Reference.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/Reference.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Reference.java 27 Jun 2003 01:45:30 -0000 1.10
--- Reference.java 11 Dec 2003 06:41:30 -0000 1.11
***************
*** 69,72 ****
--- 69,73 ----
package hk.hku.cecid.phoenix.message.packaging;
+ import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import java.util.ArrayList;
import java.util.Iterator;
***************
*** 75,80 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
- import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
-
/**
* A <code>Reference</code> inside a <code>Manifest</code>
--- 76,79 ----
***************
*** 83,87 ****
* @version $Revision$
*/
-
public class Reference extends ExtensionElementImpl {
--- 82,85 ----
Index: Signature.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/Signature.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Signature.java 20 Aug 2003 08:02:09 -0000 1.9
--- Signature.java 11 Dec 2003 06:41:30 -0000 1.10
***************
*** 71,78 ****
import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import hk.hku.cecid.phoenix.pki.CertResolver;
- import javax.xml.soap.*;
import java.util.ArrayList;
import java.util.Iterator;
!
/**
* <P>An ebXML <code>Signature</code> is a <code>HeaderElement</code>
--- 71,79 ----
import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import hk.hku.cecid.phoenix.pki.CertResolver;
import java.util.ArrayList;
import java.util.Iterator;
! import javax.xml.soap.SOAPElement;
! import javax.xml.soap.SOAPEnvelope;
! import javax.xml.soap.SOAPException;
/**
* <P>An ebXML <code>Signature</code> is a <code>HeaderElement</code>
***************
*** 87,91 ****
* @version $Revision$
*/
-
public abstract class Signature extends HeaderElement {
--- 88,91 ----
Index: SignatureReference.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/SignatureReference.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SignatureReference.java 15 Apr 2003 02:05:44 -0000 1.2
--- SignatureReference.java 11 Dec 2003 06:41:30 -0000 1.3
***************
*** 70,78 ****
import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
- import java.util.Iterator;
-
/**
* <ds:Reference> element in <ds:Signature>.
--- 70,77 ----
import hk.hku.cecid.phoenix.message.packaging.validation.SOAPValidationException;
+ import java.util.Iterator;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
/**
* <ds:Reference> element in <ds:Signature>.
***************
*** 81,85 ****
* @version $Revision$
*/
-
public class SignatureReference extends HeaderElement {
--- 80,83 ----
Index: StatusRequest.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/StatusRequest.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** StatusRequest.java 9 Apr 2003 07:48:30 -0000 1.5
--- StatusRequest.java 11 Dec 2003 06:41:30 -0000 1.6
***************
*** 74,78 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
-
/**
* An ebXML <code>StatusRequest</code> in the SOAP Body of a
--- 74,77 ----
***************
*** 82,86 ****
* @version $Revision$
*/
-
public class StatusRequest extends BodyElement {
--- 81,84 ----
Index: StatusResponse.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/StatusResponse.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** StatusResponse.java 9 Apr 2003 07:48:34 -0000 1.5
--- StatusResponse.java 11 Dec 2003 06:41:30 -0000 1.6
***************
*** 74,78 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
-
/**
* An ebXML <code>StatusResponse</code> in the SOAP Body of a
--- 74,77 ----
***************
*** 82,86 ****
* @version $Revision$
*/
-
public class StatusResponse extends BodyElement {
--- 81,84 ----
Index: SyncReply.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/SyncReply.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** SyncReply.java 18 Jun 2003 09:14:43 -0000 1.6
--- SyncReply.java 11 Dec 2003 06:41:30 -0000 1.7
***************
*** 72,76 ****
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
-
/**
* An ebXML <code>SyncReply</code> in the SOAP Header of a
--- 72,75 ----
***************
*** 80,84 ****
* @version $Revision$
*/
-
public class SyncReply extends HeaderElement {
--- 79,82 ----
|