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