You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2006/05/16 14:19:41 UTC

svn commit: r406920 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/CallbackReceiver.java

Author: deepal
Date: Tue May 16 05:19:37 2006
New Revision: 406920

URL: http://svn.apache.org/viewcvs?rev=406920&view=rev
Log:
- Sandesha needs to access pending services in CallbackReceiver

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/CallbackReceiver.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/CallbackReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/CallbackReceiver.java?rev=406920&r1=406919&r2=406920&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/CallbackReceiver.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/CallbackReceiver.java Tue May 16 05:19:37 2006
@@ -40,4 +40,9 @@
             throw new AxisFault("The Callback realtes to MessageID " + messageID + " is not found");
         }
     }
+
+    //to get the pending request
+    public HashMap getCallbackStore() {
+        return callbackStore;
+    }
 }