summaryrefslogtreecommitdiff
path: root/qpid/java/common
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2007-08-03 04:00:41 +0000
committerRafael H. Schloming <rhs@apache.org>2007-08-03 04:00:41 +0000
commit8eab2c30ae3cc0e523954d317517aab264923286 (patch)
tree49ab979be36b2c53d633242b6b5b9a5187eb95ee /qpid/java/common
parentc063a5a7ee8748b1d1921beb0bc435bcb9e0d924 (diff)
downloadqpid-python-8eab2c30ae3cc0e523954d317517aab264923286.tar.gz
fixed build failures caused by sloppy checkins and SNAPSHOT dependencies, changed the junit-toolkit version from 0.6-SNAPSHOT to 0.6-20070718.144514-11
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562323 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common')
-rw-r--r--qpid/java/common/src/main/java/org/apache/qpidity/Session.java101
1 files changed, 48 insertions, 53 deletions
diff --git a/qpid/java/common/src/main/java/org/apache/qpidity/Session.java b/qpid/java/common/src/main/java/org/apache/qpidity/Session.java
index 48860309a0..32fa5f55b3 100644
--- a/qpid/java/common/src/main/java/org/apache/qpidity/Session.java
+++ b/qpid/java/common/src/main/java/org/apache/qpidity/Session.java
@@ -69,60 +69,55 @@ public class Session extends Invoker
// -----------------------------------------
// Messaging Methods
// ------------------------------------------
- public void messageTransfer(String destination, Message msg) throws QpidException
- {
-
- }
-
- public void data(byte[] src) throws QpidException
- {
- // TODO Auto-generated method stub
-
- }
-
- public void endData() throws QpidException
- {
- // TODO Auto-generated method stub
-
- }
-
- public void messageHeaders(Header... headers) throws QpidException
- {
- // TODO Auto-generated method stub
-
- }
-
- public void messageTransfer(String destination,Option... options) throws QpidException
- {
- // TODO Auto-generated method stub
-
- }
-
- public void messageAcknowledge() throws QpidException
- {
- // TODO Auto-generated method stub
- }
-
- public boolean messageAcquire() throws QpidException
- {
- // TODO Auto-generated method stub
- return false;
- }
-
- public void messageReject() throws QpidException
- {
- // TODO Auto-generated method stub
-
- }
-
- public void messageRelease() throws QpidException
- {
- // TODO Auto-generated method stub
- }
+ public void messageTransfer(String destination, Message msg, Option ... _options) throws QpidException
+ {
- public void addMessageListener(String destination,StreamingMessageListener listener)
+ }
+
+ public void data(byte[] src) throws QpidException
+ {
+ // TODO Auto-generated method stub
+ }
+
+ public void endData() throws QpidException
+ {
+ // TODO Auto-generated method stub
+ }
+
+ public void messageHeaders(Header... headers) throws QpidException
+ {
+ // TODO Auto-generated method stub
+ }
+
+ public void messageTransfer(String destination,Option... options) throws QpidException
+ {
+ // TODO Auto-generated method stub
+ }
+
+ public void messageAcknowledge() throws QpidException
+ {
+ // TODO Auto-generated method stub
+ }
+
+ public boolean messageAcquire() throws QpidException
+ {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public void messageReject() throws QpidException
+ {
+ // TODO Auto-generated method stub
+ }
+
+ public void messageRelease() throws QpidException
+ {
+ // TODO Auto-generated method stub
+ }
+
+ public void setMessageListener(String destination,StreamingMessageListener listener)
{
messagListeners.put(destination, listener);
- }
-
+ }
+
}