Package com.volantis.devrep.repository.impl.accessors.xml

Examples of com.volantis.devrep.repository.impl.accessors.xml.JiBXDeviceRepositoryAccessor


            final DeviceRepositoryConfiguration configuration) {

        final DeviceRepositoryAccessor result;
        if (repository instanceof LocalXMLRepository) {
            if (configuration == null) {
                result = new JiBXDeviceRepositoryAccessor(
                    repository, location);
            } else {
                final XMLDeviceRepositoryConfiguration xmlConfiguration =
                    ((XMLDeviceRepositoryConfiguration) configuration);
                result = new JiBXDeviceRepositoryAccessor(repository, location,
                    xmlConfiguration.getSchemaValidation());
            }
        } else if (repository instanceof LocalJDBCRepository) {
            // todo: update caching in the JDBDeviceRepositoryAccessor
            // we could create a JDBCConnectionReleasingDeviceRepositoryAccessor
View Full Code Here

TOP

Related Classes of com.volantis.devrep.repository.impl.accessors.xml.JiBXDeviceRepositoryAccessor

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.