1 package org.jbpm.bpel.service.spi; 2 3 import javax.xml.namespace.QName ; 4 5 import org.w3c.dom.Element ; 6 7 11 public abstract class EndpointReference { 12 13 long id; 14 15 public abstract Element call(String operation, Element input); 16 17 public void callOneWay(String operation, Element input) { 18 call(operation, input); 19 } 20 21 public abstract QName getElementQName(); 22 23 public abstract void readElement(Element endpointRefElem); 24 25 public abstract void writeElement(Element endpointRefElem); 26 } 27 | Popular Tags |