home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Java / Java.zip / mqaoad21.zip / MQAOExceptionLogExt.java < prev    next >
Text File  |  2002-12-19  |  1KB  |  40 lines

  1. package com.ibm.extricity.adapters.mqseries.mqak;
  2.  
  3. /**
  4.  * MQAOExceptionLogExt.java 1.0    10/14/2000
  5.  *
  6.  * This interface is used to define the Exception Logging Extension for the IBM Extricity MQAO Adapter
  7.  *
  8.  * IBM Confidential
  9.  *
  10.  * OCO Source Materials
  11.  *
  12.  * 5799-RNK  
  13.  *
  14.  * (C) Copyright IBM Corp. 2000
  15.  *
  16.  * The source code for this program is not published
  17.  * or otherwise divested of its trade secrets,
  18.  * irrespective of what has been deposited with the
  19.  * U. S. Copyright Office.
  20.  *
  21.  * @author Thomas W. Jaworski
  22. **/
  23.  
  24. public interface MQAOExceptionLogExt
  25. {
  26. /**
  27.  * Insert the method's description here.
  28.  * Creation date: (4/19/01 9:15:19 AM)
  29.  * @return long
  30.  * @param msgId java.lang.String
  31.  * @param subcomponent java.lang.String
  32.  * @param ppName java.lang.String
  33.  * @param ppid java.lang.String
  34.  * @param message java.lang.String
  35.  * @exception java.lang.Exception The exception description.
  36.  * @exception com.ibm.epic.common.EpicException The exception description.
  37.  */
  38. long logFromMsgFile(String exceptionId, String subComponent, String processName, String processID, String logMessage, String extData)
  39.     throws java.lang.Exception;
  40. }