KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > jms > common > routing > RouteDestNode


1 package com.ubermq.jms.common.routing;
2
3 import java.util.*;
4
5 /**
6  * Represents a destination for the router.
7  */

8 public interface RouteDestNode
9     extends Comparable JavaDoc
10 {
11     /**
12      * @return a human readable name for this destination.
13      */

14     public String JavaDoc getDisplayName();
15     
16     /**
17      * @return the canonical name for this destination.
18      */

19     public String JavaDoc getNodeName();
20 }
21
22
23     
24     
25
Popular Tags