Package com.volantis.mcs.runtime.configuration

Examples of com.volantis.mcs.runtime.configuration.JDBCRepositoryDeviceConfiguration


        String repositoryElement = "<jdbc-repository project=\"jdbc-project\"/>";
        RepositoryDeviceConfiguration standard =
                checkStandardDeviceRepository(repositoryElement);

        assertTrue(standard instanceof JDBCRepositoryDeviceConfiguration);
        JDBCRepositoryDeviceConfiguration jdbc =
                (JDBCRepositoryDeviceConfiguration) standard;
        assertEquals("", "jdbc-project", jdbc.getProject());
    }
View Full Code Here


        if (srdc != null) {
            if (srdc instanceof JDBCRepositoryDeviceConfiguration) {
                // JDBC devices - this object should probably be passed into
                // the JDBC repository / JDBC device accessor directly.

                JDBCRepositoryDeviceConfiguration jsrdc =
                        (JDBCRepositoryDeviceConfiguration) srdc;
                String deviceProject = jsrdc.getProject();
                if (deviceProject != null) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Using standard jdbc device " +
                                "repository project: " + deviceProject);
                    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.runtime.configuration.JDBCRepositoryDeviceConfiguration

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.