owenb 2002/10/01 05:18:17 Modified: java/src/org/apache/wsif WSIFPort.java Log: WSIFPort implementations should be serializable. Making WSIFPort extend java.io.Serializable guarantees that all WSIFPort implementations will be flagged as serializable. Revision Changes Path 1.3 +3 -1 xml-axis-wsif/java/src/org/apache/wsif/WSIFPort.java Index: WSIFPort.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/WSIFPort.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- WSIFPort.java 9 Jul 2002 13:37:36 -0000 1.2 +++ WSIFPort.java 1 Oct 2002 12:18:17 -0000 1.3 @@ -57,6 +57,8 @@ package org.apache.wsif; +import java.io.Serializable; + /** * A WSIFPort represents the handle by which the operations * from the <portType> of the <port> of this WSIFPort can be @@ -72,7 +74,7 @@ * @author Sanjiva Weerawarana * @author Nirmal Mukhi */ -public interface WSIFPort { +public interface WSIFPort extends Serializable { /** * Create a new WSIFOperation. There must be exactly one * operation in this port's portType with this name. For