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

  1. package com.ibm.extricity.adapters.mqseries.mqak;
  2.  
  3. /**
  4.  * Insert the type's description here.
  5.  * Creation date: (10/24/00 5:35:29 PM)
  6.  * @author: Administrator
  7.  */
  8. public class TestEventContext implements com.extricity.adapter.api.EventContext
  9. {
  10.    private String var = null;
  11.  
  12. /**
  13.  * TestEventContext constructor comment.
  14.  */
  15. public TestEventContext()
  16. {
  17.    super();
  18. }
  19.  
  20. /**
  21.  * addBOElementEvent method comment.
  22.  */
  23. public com.extricity.document.api.Element addBOElementEvent(String arg1, int arg2, String arg3)
  24.    throws com.extricity.adapter.api.ISException
  25. {
  26.    return null;
  27. }
  28.  
  29. /**
  30.  * addBOElementEvent method comment.
  31.  */
  32. public com.extricity.document.api.Element addBOElementEvent(String arg1, String arg2)
  33.    throws com.extricity.adapter.api.ISException
  34. {
  35.    return null;
  36. }
  37.  
  38. /**
  39.  * addISEvent method comment.
  40.  */
  41. public CRStation.defs.document.BusinessObject addISEvent(String arg1, int arg2, String arg3)
  42.    throws com.extricity.adapter.api.ISException
  43. {
  44.    return null;
  45. }
  46.  
  47. /**
  48.  * addISEvent method comment.
  49.  */
  50. public CRStation.defs.document.BusinessObject addISEvent(String arg1, String arg2)
  51.    throws com.extricity.adapter.api.ISException
  52. {
  53.    return null;
  54. }
  55.  
  56. /**
  57.  * addISEvent method comment.
  58.  */
  59. public Object addISEvent(String arg1, String arg2, int arg3, String arg4)
  60.    throws com.extricity.adapter.api.ISException
  61. {
  62.    return null;
  63. }
  64.  
  65. /**
  66.  * addISEvent method comment.
  67.  */
  68. public Object addISEvent(String arg1, String arg2, String arg3)
  69.    throws com.extricity.adapter.api.ISException
  70. {
  71.    return null;
  72. }
  73.  
  74. /**
  75.  * addVariantEvent method comment.
  76.  */
  77. public Object addVariantEvent(String arg1, String arg2, int arg3, String arg4)
  78.    throws com.extricity.adapter.api.ISException
  79. {
  80.    return null;
  81. }
  82.  
  83. /**
  84.  * addVariantEvent method comment.
  85.  */
  86. public Object addVariantEvent(String arg1, String arg2, String arg3)
  87.    throws com.extricity.adapter.api.ISException
  88. {
  89.    var = arg2;
  90.    return null;
  91. }
  92.  
  93. /**
  94.  * getTransactionContext method comment.
  95.  */
  96. public com.extricity.adapter.api.TransactionContext getTransactionContext() {
  97.    return null;
  98. }
  99.  
  100. /**
  101.  * Insert the method's description here.
  102.  * Creation date: (10/24/00 5:50:41 PM)
  103.  * @return java.lang.String
  104.  */
  105. public String getVariantEvent()
  106. {
  107.    return var;
  108. }
  109.  
  110. /**
  111.  * removeEvent method comment.
  112.  */
  113. public boolean removeEvent(Object arg1)
  114. {
  115.    return false;
  116. }
  117. }