// see files in modules/core/src/conf/META-INF/services/org/activemq/transport/server/
return new String[]{"activeio","jabber","multicast","openwire","peer","tcp","ttmp","udp","vm",};
}
public String[] getConnectors() {
GBeanQuery query = new GBeanQuery(null, ActiveMQConnector.class.getName());
Set set = kernel.listGBeans(query);
String[] results = new String[set.size()];
int i=0;
for (Iterator it = set.iterator(); it.hasNext();) {
ObjectName name = (ObjectName) it.next();