1 package org.jbpm.bpel.service.soap; 2 3 import javax.xml.namespace.QName ; 4 5 import org.w3c.dom.Element ; 6 7 import org.jbpm.bpel.service.spi.EndpointReference; 8 9 13 public class AddressingEndpointReference extends EndpointReference { 14 15 16 public QName getElementQName() { 17 return new QName (AddressingConstants.NS_ADDRESSING, AddressingConstants.ELEM_ENDPOINT_REFERENCE); 18 } 19 20 21 public Element call(String operation, Element input) { 22 return null; 24 } 25 26 27 public void readElement(Element endpointRefElem) { 28 30 } 31 32 33 public void writeElement(Element endpointRefElem) { 34 36 } 37 } | Popular Tags |