home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Java / Java.zip / mqaoad21.zip / ProcessDataInt.java < prev    next >
Text File  |  2003-01-13  |  860b  |  32 lines

  1. package com.ibm.extricity.adapters.mqseries.mqak;
  2.  
  3. /**
  4.  * ProcessDataInt.java 1.0      10/14/2000
  5.  *
  6.  * This interface is used to define process data interface to the helper
  7.  *
  8.  * OCO Source Materials
  9.  *
  10.  * 5799-RNK
  11.  *
  12.  * (C) Copyright IBM Corp. 2000
  13.  *
  14.  * The source code for this program is not published
  15.  * or otherwise divested of its trade secrets,
  16.  * irrespective of what has been deposited with the
  17.  * U. S. Copyright Office.
  18.  *
  19.  * @author Thomas W. Jaworski
  20. **/
  21. public interface ProcessDataInt
  22. {
  23.    public String getBOCorrelationID();
  24.    public String getCommitContext();
  25.    public String getMsgXML();
  26.    public String getTradingPartner();
  27.    public void setBOCorrelationID(String id);
  28.    public void setCommitContext(String context);
  29.    public void setMsgXML(String xml);
  30.    public void setTradingPartner(String id);
  31. }
  32.