* @return <code>Enumeration</code> with instances of the class
* <code> jade.proto.SubscriptionResponder&Subscription</code>
*/
public Enumeration getSubscriptions(){
Vector subscriptions = new Vector();
StringACLCodec codec = new StringACLCodec();
ResultSet rs = null;
try {
rs = getPreparedStatements().stm_selSubscriptions.executeQuery();
while (rs.next()) {
String base64Str = rs.getString("aclm");
String aclmStr = new String(Base64.decodeBase64(base64Str.getBytes("US-ASCII")), "US-ASCII");
ACLMessage aclm = codec.decode(aclmStr.getBytes(), ACLCodec.DEFAULT_CHARSET);
subscriptions.add(sr.createSubscription(aclm));
}
} catch (Exception e) {
if(logger.isLoggable(Logger.SEVERE))