antelder 2002/12/09 08:51:19 Modified: java/src/org/apache/wsif/base WSIFServiceImpl.java java/src/org/apache/wsif/providers/java WSIFOperation_Java.java Removed: java/src/org/apache/wsif WSIFMessageFactory.java java/src/org/apache/wsif/base WSIFDefaultMessageFactory.java java/src/org/apache/wsif/compiler MessageCompiler.java Log: Remove the message compiler classes Revision Changes Path 1.30 +0 -19 xml-axis-wsif/java/src/org/apache/wsif/base/WSIFServiceImpl.java Index: WSIFServiceImpl.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/base/WSIFServiceImpl.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- WSIFServiceImpl.java 7 Dec 2002 12:34:01 -0000 1.29 +++ WSIFServiceImpl.java 9 Dec 2002 16:51:19 -0000 1.30 @@ -82,7 +82,6 @@ import org.apache.wsif.WSIFConstants; import org.apache.wsif.WSIFException; -import org.apache.wsif.WSIFMessageFactory; import org.apache.wsif.WSIFPort; import org.apache.wsif.WSIFService; import org.apache.wsif.compiler.schema.tools.Schema2Java; @@ -112,7 +111,6 @@ public class WSIFServiceImpl implements WSIFService { private static PrivateCompositeExtensionRegistry providersExtRegs = new PrivateCompositeExtensionRegistry(); - private static WSIFMessageFactory msgFactory = null; private Definition def = null; private Service service; private PortType portType; @@ -498,22 +496,6 @@ } /** - * Gets the factory for creating WSIFMessages - */ - public static WSIFMessageFactory getMessageFactory() { - Trc.entry(null); - if (msgFactory == null) { - msgFactory = createMsgFactory(); - } - Trc.exit(msgFactory); - return msgFactory; - } - - private static WSIFMessageFactory createMsgFactory() { - return new WSIFDefaultMessageFactory(); - } - - /** * @deprecated this method is replaced by the getProvider * method in the org.apache.util.WSIFPluggableProviders class */ @@ -1011,7 +993,6 @@ buff = new String(this.toString()); buff += "\nprovidersExtRegs:" + (providersExtRegs == null ? "null" : providersExtRegs.toString()); - buff += "\nmsgFactory:" + (msgFactory == null ? "null" : msgFactory.toString()); buff += "\ndef:" + Trc.brief(def); buff += "\nservice:" + Trc.brief(service); buff += "\nportType:" + Trc.brief(portType); 1.28 +0 -1 xml-axis-wsif/java/src/org/apache/wsif/providers/java/WSIFOperation_Java.java Index: WSIFOperation_Java.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/java/WSIFOperation_Java.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- WSIFOperation_Java.java 7 Dec 2002 12:33:59 -0000 1.27 +++ WSIFOperation_Java.java 9 Dec 2002 16:51:19 -0000 1.28 @@ -84,7 +84,6 @@ import org.apache.wsif.WSIFConstants; import org.apache.wsif.WSIFException; import org.apache.wsif.WSIFMessage; -import org.apache.wsif.WSIFMessageFactory; import org.apache.wsif.WSIFOperation; import org.apache.wsif.base.WSIFDefaultOperation; import org.apache.wsif.base.WSIFServiceImpl;