01: /*
02: * SOAPBinding.java
03: *
04: * Created on September 22, 2006, 7:12 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.e2e.api.wsdl.extensions.soap;
11:
12: import java.util.List;
13: import org.netbeans.modules.e2e.api.wsdl.extensions.ExtensibilityElement;
14:
15: /**
16: *
17: * @author Michal Skvor
18: */
19: public interface SOAPBinding extends ExtensibilityElement {
20:
21: public void setTransportURI(String transportURI);
22:
23: public String getTransportURI();
24:
25: public void setStyle(String style);
26:
27: public String getStyle();
28:
29: public void addExtensibilityElement(
30: ExtensibilityElement extensibilityElement);
31:
32: public List<ExtensibilityElement> getExtensibilityElements();
33: }
|