Package org.apache.cocoon.webapps.portal.context

Examples of org.apache.cocoon.webapps.portal.context.SessionContextProviderImpl


    public void compose(ComponentManager manager)
    throws ComponentException {
        super.compose( manager );
        ContextManager contextManager = (ContextManager)manager.lookup(ContextManager.ROLE);
        // add the provider for the portal context
        SessionContextProvider provider = new SessionContextProviderImpl();
        try {
            contextManager.addSessionContextProvider(provider, PortalConstants.SESSION_CONTEXT_NAME);
        } catch (ProcessingException pe) {
            // ignore this!
        }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.webapps.portal.context.SessionContextProviderImpl

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.