Class XSLTCalloutImpl

java.lang.Object
oracle.tip.b2b.callout.XSLTCalloutImpl
All Implemented Interfaces:
Callout

public class XSLTCalloutImpl extends Object implements Callout
This sample callout transforms the incoming XML document to another XML document. It also shows how to generate Functional Ack and Error message.
  • Constructor Details

    • XSLTCalloutImpl

      public XSLTCalloutImpl()
  • Method Details

    • execute

      public void execute(CalloutContext context, List input, List output) throws CalloutDomainException, CalloutSystemException
      Description copied from interface: Callout
      The execute() method contains the actual business logic of a callout.
      Specified by:
      execute in interface Callout
      Parameters:
      context - contains callout and usage properties. The B2B Engine provides a default implementation of this interface and hence the user is not expected to implement this interface.
      input - contains the input callout messages for the callout.
      output - contains the return callout messages. If one of the return message is a functional acknowledgment, then that callout message should have a message property functional_ack=true
      Throws:
      CalloutDomainException
      CalloutSystemException