[Major] refactored Element maps for better handling

Now they are not components, now there is an ElementMapHandler which
is the component and the OrderMap and ResourceMap can be retrieved from
the ElementMapHandler
This commit is contained in:
Robert von Burg 2013-12-23 18:43:11 +01:00
parent a0d4f2587e
commit 4ef8e990a9
1 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@ import li.strolch.persistence.api.StrolchPersistenceHandler;
import li.strolch.persistence.api.StrolchTransaction;
import li.strolch.persistence.impl.model.OrderContextFactory;
import li.strolch.persistence.impl.model.ResourceContextFactory;
import li.strolch.runtime.component.ComponentContainer;
import li.strolch.runtime.component.StrolchComponent;
import li.strolch.runtime.agent.ComponentContainerImpl;
import li.strolch.runtime.agent.StrolchComponent;
import li.strolch.runtime.configuration.ComponentConfiguration;
import li.strolch.runtime.observer.ObserverHandler;
import ch.eitchnet.xmlpers.api.IoMode;
@ -46,7 +46,7 @@ public class XmlPersistenceHandler extends StrolchComponent implements StrolchPe
public static final String DB_STORE_PATH = "dbStore/"; //$NON-NLS-1$
private PersistenceManager persistenceManager;
public XmlPersistenceHandler(ComponentContainer container, String componentName) {
public XmlPersistenceHandler(ComponentContainerImpl container, String componentName) {
super(container, componentName);
}