Package org.apache.isis.objectstore.xml.internal.data.xml

Examples of org.apache.isis.objectstore.xml.internal.data.xml.XmlDataManager


    public XmlObjectStore(final IsisConfiguration configuration) {
        final String charset = Utils.lookupCharset(configuration);
        final String directory = configuration.getString(XMLOS_DIR, "xml/objects");
        final XmlFile xmlFile = new XmlFile(charset, directory);
        dataManager = new XmlDataManager(xmlFile);
        serviceManager = new XmlServiceManager(xmlFile);
        serviceManager.loadServices();
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.objectstore.xml.internal.data.xml.XmlDataManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.