home *** CD-ROM | disk | FTP | other *** search
Java Source | 2002-12-19 | 1.2 KB | 40 lines |
- package com.ibm.extricity.adapters.mqseries.mqak;
-
- /**
- * MQAOExceptionLogExt.java 1.0 10/14/2000
- *
- * This interface is used to define the Exception Logging Extension for the IBM Extricity MQAO Adapter
- *
- * IBM Confidential
- *
- * OCO Source Materials
- *
- * 5799-RNK
- *
- * (C) Copyright IBM Corp. 2000
- *
- * The source code for this program is not published
- * or otherwise divested of its trade secrets,
- * irrespective of what has been deposited with the
- * U. S. Copyright Office.
- *
- * @author Thomas W. Jaworski
- **/
-
- public interface MQAOExceptionLogExt
- {
- /**
- * Insert the method's description here.
- * Creation date: (4/19/01 9:15:19 AM)
- * @return long
- * @param msgId java.lang.String
- * @param subcomponent java.lang.String
- * @param ppName java.lang.String
- * @param ppid java.lang.String
- * @param message java.lang.String
- * @exception java.lang.Exception The exception description.
- * @exception com.ibm.epic.common.EpicException The exception description.
- */
- long logFromMsgFile(String exceptionId, String subComponent, String processName, String processID, String logMessage, String extData)
- throws java.lang.Exception;
- }