Package org.jboss.gravia.arquillian.container.ContainerSetupTask

Examples of org.jboss.gravia.arquillian.container.ContainerSetupTask.Context


        }

        MBeanServerConnection server = mbeanServerInstance.get();
        ContainerDef containerConfig = container.getContainerConfiguration();
        Map<String, String> props = containerConfig.getContainerProperties();
        Context context = new SetupContext(server, props);
        for (ContainerSetupTask task : setupTasks) {
            task.setUp(context);
        }
    }
View Full Code Here


        if (setupTasks != null) {
            Collections.reverse(setupTasks);

            MBeanServerConnection server = mbeanServerInstance.get();
            Map<String, String> props = container.getContainerConfiguration().getContainerProperties();
            Context context = new SetupContext(server, props);
            for (ContainerSetupTask task : setupTasks) {
                task.tearDown(context);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.gravia.arquillian.container.ContainerSetupTask.Context

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.