此内容没有您所选择的语言版本。
5.4. Publish a Contract
Procedure 5.1. Task
- In order to publish contract information, you must give an action the following
org.jboss.internal.soa.esb.publish.Publish
annotation. (This example uses the SOAPProcessor for demonstrative purposes):@Publish(JBossWSWebserviceContractPublisher.class) public class SOAPProcessor extends AbstractActionPipelineProcessor { //TODO: implement }
@Publish(JBossWSWebserviceContractPublisher.class) public class SOAPProcessor extends AbstractActionPipelineProcessor { //TODO: implement }
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Implement the
org.jboss.soa.esb.actions.soap.ContractPublisher
interface (You only need to implement one method):public ContractInfo getContractInfo(EPR epr);
public ContractInfo getContractInfo(EPR epr);
Copy to Clipboard Copied! Toggle word wrap Toggle overflow