KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > jms > client > BrowserDelegate


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.jms.client;
8
9 import java.util.List JavaDoc;
10
11 import javax.jms.JMSException JavaDoc;
12
13 /**
14  * The implementation of a browser
15  *
16  * @author <a HREF="mailto:adrian@jboss.org>Adrian Brock</a>
17  * @version $Revision: 1.3 $
18  */

19 public interface BrowserDelegate
20    extends Lifecycle
21 {
22    // Constants -----------------------------------------------------
23

24    // Public --------------------------------------------------------
25

26    /**
27     * Browse the messages
28     *
29     * @return a list of messages
30     * @throws JMSException for any error
31     */

32    List JavaDoc browse() throws JMSException JavaDoc;
33
34    // Inner Classes --------------------------------------------------
35
}
36
Popular Tags