Package org.jboss.as.web

Examples of org.jboss.as.web.ThreadSetupBindingListener


        JsfInjectionProvider.getInjectionContainer().set(injectionContainer);
        final List<SetupAction> actions = new ArrayList<SetupAction>();
        actions.addAll(setupActions);
        context.setInstanceManager(injectionContainer);
        context.setThreadBindingListener(new ThreadSetupBindingListener(actions));
        try {
            try {
                context.create();
            } catch (Exception e) {
                throw new StartException(MESSAGES.createContextFailed(), e);
View Full Code Here


        WebInjectionContainer.setWebInjectionContainer(injectionContainer);
        final List<SetupAction> actions = new ArrayList<SetupAction>();
        actions.addAll(setupActions);
        context.setInstanceManager(injectionContainer);
        context.setThreadBindingListener(new ThreadSetupBindingListener(actions));
        try {
            try {
                context.create();
            } catch (Exception e) {
                throw new StartException(MESSAGES.createContextFailed(), e);
View Full Code Here

        context.setRealm(realm.getValue());

        JsfInjectionProvider.getInjectionContainer().set(injectionContainer);
        final List<SetupAction> actions = new ArrayList<SetupAction>();
        actions.addAll(setupActions);
        context.setThreadBindingListener(new ThreadSetupBindingListener(actions));
        try {
            try {
                context.create();
            } catch (Exception e) {
                throw new StartException("failed to create context", e);
View Full Code Here

        WebInjectionContainer.setCurrentInjectionContainer(injectionContainer);
        final List<SetupAction> actions = new ArrayList<SetupAction>();
        actions.addAll(setupActions);
        context.setInstanceManager(injectionContainer);
        context.setThreadBindingListener(new ThreadSetupBindingListener(actions));
        WEB_LOGGER.registerWebapp(context.getName());
        try {
            try {
                context.create();
            } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.jboss.as.web.ThreadSetupBindingListener

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.