1 45 package org.exolab.jms.server; 46 47 import javax.jms.InvalidClientIDException ; 48 import javax.jms.JMSException ; 49 50 51 58 public interface ServerConnection { 59 60 66 long getConnectionId() throws JMSException ; 67 68 74 String getClientID() throws JMSException ; 75 76 90 void setClientID(String clientID) throws JMSException ; 91 92 105 ServerSession createSession(int acknowledgeMode, boolean transacted) 106 throws JMSException ; 107 108 113 void close() throws JMSException ; 114 115 } 116 | Popular Tags |