summaryrefslogtreecommitdiff
path: root/java/common/src
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
commit043e8c35429e7dbcf6cfb63206f7980d1afeccdd (patch)
tree63dccd645343feb76ea948c3d53ef64cc47e95f3 /java/common/src
parentcd6b4ba256effcf6c3e3f69a74e51d82c579e2ea (diff)
downloadqpid-python-043e8c35429e7dbcf6cfb63206f7980d1afeccdd.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/qpid@562323 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src')
-rw-r--r--java/common/src/main/java/org/apache/qpidity/Session.java101
1 files changed, 48 insertions, 53 deletions
diff --git a/java/common/src/main/java/org/apache/qpidity/Session.java b/java/common/src/main/java/org/apache/qpidity/Session.java
index 48860309a0..32fa5f55b3 100644
--- a/java/common/src/main/java/org/apache/qpidity/Session.java
+++ b/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);
- }
-
+ }
+
}