Package org.rioproject.impl.config

Examples of org.rioproject.impl.config.DynamicConfiguration$Entry


    @Test
    public void testSimpleStandAlone() throws IOException {
        OperationalString opString = new OpString("test", null);
        OpStringManager parent = null;
        boolean active = true;
        Configuration config = new DynamicConfiguration();
        OpStringManagerController opStringManagerController = new OpStringManagerController();
        DefaultOpStringManager manager = new DefaultOpStringManager(opString,
                                                                    parent,
                                                                    active,
                                                                    config,
View Full Code Here


    }

    @Test
    public void testNestedStandAlone() throws Exception {
        OpStringManagerController opStringManagerController = new OpStringManagerController();
        opStringManagerController.setConfig(new DynamicConfiguration());
        OperationalString opString1 = new OpString("test-1", null);

        Map<String, Throwable> errorMap = new HashMap<String, Throwable>();
        OpStringManager manager1 = opStringManagerController.addOperationalString(opString1,
                                                                                 errorMap,
View Full Code Here

    }

    @Test
    public void testNested() throws Exception {
        OpStringManagerController opStringManagerController = new OpStringManagerController();
        opStringManagerController.setConfig(new DynamicConfiguration());
        OperationalString opString1 = new OpString("test-1", null);

        Map<String, Throwable> errorMap = new HashMap<String, Throwable>();       

        OpString opString2 = new OpString("test-2", null);
View Full Code Here

TOP

Related Classes of org.rioproject.impl.config.DynamicConfiguration$Entry

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.