1 16 package org.apache.wsdl; 17 18 import javax.xml.namespace.QName ; 19 import java.util.HashMap ; 20 21 24 public interface WSDLService extends Component { 25 public static final String STYLE_RPC = "rpc"; 26 public static final String STYLE_DOC = "doc"; 27 public static final String STYLE_MSG = "msg"; 28 33 public HashMap getEndpoints(); 34 35 40 public void setEndpoints(HashMap endpoints); 41 42 47 public void setEndpoint(WSDLEndpoint endpoint); 48 49 55 public WSDLEndpoint getEndpoint(QName qName); 56 57 62 public QName getName(); 63 64 69 public void setName(QName name); 70 71 77 public String getNamespace(); 78 79 84 public WSDLInterface getServiceInterface(); 85 86 91 public void setServiceInterface(WSDLInterface serviceInterface); 92 } 93 | Popular Tags |