1 16 package org.apache.axis2.wsdl.builder; 17 18 import org.apache.axis2.wsdl.WSDLVersionWrapper; 19 20 import javax.wsdl.WSDLException; 21 import java.io.InputStream ; 22 23 26 public class WSDL2ToWOMBuilder implements WOMBuilder { 27 28 public WSDLVersionWrapper build(InputStream in) throws WSDLException { 29 throw new UnsupportedOperationException ("Not Implemented"); 30 } 31 32 public WSDLVersionWrapper build(InputStream in, WSDLComponentFactory wsdlComponenetFactory)throws WSDLException{ 33 throw new UnsupportedOperationException ("Not Implemented"); 34 35 } 36 } 37 | Popular Tags |