return(Long.toString(cxnId.longValue()));
}
private static String[] getDestinationNames(ConsumerUID cid) {
Consumer con = Consumer.getConsumer(cid);
String[] ret = null;
if (con == null) {
return (null);
}
ArrayList<String> al = new ArrayList<String>();
Set dests = con.getDestinations();
if (dests == null) return null;
Iterator itr = dests.iterator();
while (itr.hasNext()) {
Destination dest = (Destination)itr.next();
al.add(dest.getDestinationName());