1 16 17 package org.apache.wsdl.extensions.impl; 18 19 import org.apache.wsdl.extensions.ExtensionConstants; 20 import org.apache.wsdl.extensions.SOAPOperation; 21 import org.apache.wsdl.impl.WSDLExtensibilityElementImpl; 22 23 27 public class SOAPOperationImpl extends WSDLExtensibilityElementImpl implements 28 ExtensionConstants, SOAPOperation { 29 30 private String soapAction; 31 32 private String style; 33 34 public SOAPOperationImpl(){ 35 this.type = SOAP_OPERATION; 36 } 37 public String getStyle() { 38 return style; 39 } 40 public void setStyle(String style) { 41 this.style = style; 42 } 43 public String getSoapAction() { 44 return soapAction; 45 } 46 public void setSoapAction(String soapAction) { 47 this.soapAction = soapAction; 48 } 49 } 50 | Popular Tags |