public static Long getCreationTime(long cxnId) {
long currentTime = System.currentTimeMillis();
ConnectionUID cxnUID = new ConnectionUID(cxnId);
return (new Long(currentTime - cxnUID.age(currentTime)));
}
public static List getConsumerIDs(long cxnId) {
ConnectionManager cm = Globals.getConnectionManager();