1 7 package org.jboss.jms.client.p2p; 8 9 import java.util.List ; 10 11 import javax.jms.Destination ; 12 import javax.jms.JMSException ; 13 14 import org.jboss.jms.client.BrowserDelegate; 15 16 23 public class P2PBrowserDelegate 24 implements BrowserDelegate 25 { 26 28 30 private P2PSessionDelegate session = null; 31 32 34 36 public P2PBrowserDelegate(P2PSessionDelegate session, Destination destination, String selector) 37 throws JMSException 38 { 39 this.session = session; 40 } 41 42 44 46 public void close() throws JMSException 47 { 48 } 49 50 public void closing() throws JMSException 51 { 52 } 53 54 public List browse() throws JMSException 55 { 56 return null; 57 } 58 59 61 63 65 67 } 68 | Popular Tags |