this.glob.getContextNode()); // TODO: pass from real parent like TopicInfo
this.mbeanHandle = this.glob.registerMBean(this.contextNode, this);
// StoragePluginManager pluginManager = (StoragePluginManager)this.glob.getObjectEntry("org.xmlBlaster.engine.msgstore.StoragePluginManager");
StoragePluginManager pluginManager = glob.getStoragePluginManager();
QueuePropertyBase queuePropertyBase = (QueuePropertyBase)userData;
//instantiate and initialize the underlying queues
String defaultTransient = pluginProperties.getProperty("transientMap", "RAM,1.0").trim();
if (defaultTransient.startsWith(getType())) {
log.severe("Cache storage configured with transientMap=CACHE, to prevent recursion we set it to 'RAM,1.0'");
defaultTransient = "RAM,1.0";
}
QueuePropertyBase ramProps = createRamCopy(queuePropertyBase);
ramProps.setEmbedded(true);
this.transientStore = pluginManager.getPlugin(defaultTransient, uniqueQueueId, ramProps);
if (log.isLoggable(Level.FINE)) log.fine("Created transient part:" + this.transientStore.toXml(""));
try {