1 package org.codehaus.xfire.wsdl11.builder; 2 3 import javax.wsdl.WSDLException; 4 5 import org.codehaus.xfire.service.Service; 6 import org.codehaus.xfire.wsdl.WSDLWriter; 7 8 /*** 9 * WSDLBuilder 10 * 11 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> 12 */ 13 public interface WSDLBuilder 14 { 15 public final static String ROLE = WSDLBuilder.class.getName(); 16 17 public WSDLWriter createWSDLWriter( Service service ) 18 throws WSDLException; 19 }