KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > messaging > interfaces > MessageAddress


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.messaging.interfaces;
8
9 /**
10  * A message address.
11  *
12  * @author <a HREF="mailto:adrian@jboss.org">Adrian Brock</a>
13  * @version $Revision: 1.1 $
14  */

15 public interface MessageAddress
16 {
17    // Constants -----------------------------------------------------
18

19    // Public --------------------------------------------------------
20

21    /**
22     * Get the name
23     *
24     * @return the name
25     */

26    String JavaDoc getName();
27    
28    // Inner Classes --------------------------------------------------
29
}
30
Popular Tags