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

Examples of com.volantis.devrep.repository.impl.devices.xml.DefaultXMLDeviceRepositoryConfiguration


    // Javadoc inherited.
    public XMLDeviceRepositoryConfiguration
            createXMLDeviceRepositoryConfiguration() {

        return new DefaultXMLDeviceRepositoryConfiguration();
    }
View Full Code Here


    public DeviceRepository getDeviceRepository(
                final URL repositoryUrl, final String unknownDevicesLogFileName)
            throws DeviceRepositoryException {

        XMLDeviceRepositoryConfiguration config =
                new DefaultXMLDeviceRepositoryConfiguration();
        config.setRepositoryURL(repositoryUrl);
        configureDefaultCacheValues(config);
        return createDeviceRepository(config, unknownDevicesLogFileName);
    }
View Full Code Here

TOP

Related Classes of com.volantis.devrep.repository.impl.devices.xml.DefaultXMLDeviceRepositoryConfiguration

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.