01: /*
02: * SOAPOperation.java
03: *
04: * Created on September 22, 2006, 7:17 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 org.netbeans.modules.e2e.api.wsdl.extensions.ExtensibilityElement;
13:
14: /**
15: *
16: * @author Michal Skvor
17: */
18: public interface SOAPOperation extends ExtensibilityElement {
19:
20: public void setSoapActionURI(String soapActionURI);
21:
22: public String getSoapActionURI();
23:
24: public void setStyle(String style);
25:
26: public String getStyle();
27: }
|