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

Examples of com.volantis.devrep.repository.impl.devices.jdbc.DefaultJDBCDeviceRepositoryConfiguration


    // Javadoc inherited.
    public JDBCDeviceRepositoryConfiguration
            createJDBCDeviceRepositoryConfiguration() {

        return new DefaultJDBCDeviceRepositoryConfiguration();
    }
View Full Code Here


    // javadoc inherited.
    public DeviceRepository getDeviceRepository(DataSource datasource,
            String project) throws DeviceRepositoryException {

        JDBCDeviceRepositoryConfiguration config =
                new DefaultJDBCDeviceRepositoryConfiguration();
        config.setDataSource(datasource);
        config.setDefaultProject(project);
        config.setUseShortNames(false);
        configureDefaultCacheValues(config);
        return createDeviceRepository(config);
    }
View Full Code Here

TOP

Related Classes of com.volantis.devrep.repository.impl.devices.jdbc.DefaultJDBCDeviceRepositoryConfiguration

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.