From 043e8c35429e7dbcf6cfb63206f7980d1afeccdd Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Fri, 3 Aug 2007 04:00:41 +0000 Subject: 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 --- .../src/main/java/org/apache/qpidity/Session.java | 101 ++++++++++----------- 1 file changed, 48 insertions(+), 53 deletions(-) (limited to 'java/common/src') 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); - } - + } + } -- cgit v1.2.1