01: /*
02: * SOAPOperationImpl.java
03: *
04: * Created on September 27, 2006, 12:08 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.wsdl.extensions.soap;
11:
12: import javax.xml.namespace.QName;
13: import org.netbeans.modules.e2e.api.wsdl.extensions.soap.SOAPOperation;
14:
15: /**
16: *
17: * @author Michal Skvor
18: */
19: public class SOAPOperationImpl implements SOAPOperation {
20:
21: private String soapActionURI;
22: private String style;
23:
24: private QName type = SOAPConstants.OPERATION;
25:
26: /** Creates a new instance of SOAPOperationImpl */
27: public SOAPOperationImpl() {
28: }
29:
30: public void setSoapActionURI(String soapActionURI) {
31: this .soapActionURI = soapActionURI;
32: }
33:
34: public String getSoapActionURI() {
35: return soapActionURI;
36: }
37:
38: public void setStyle(String style) {
39: this .style = style;
40: }
41:
42: public String getStyle() {
43: return style;
44: }
45:
46: public void setElementType(QName type) {
47: this .type = type;
48: }
49:
50: public QName getElementType() {
51: return type;
52: }
53: }
|