Package org.apache.pluto.services.information

Examples of org.apache.pluto.services.information.StaticInformationProvider


    public StaticInformationProvider getStaticProvider()
    {
        javax.servlet.ServletContext context = servletConfig.getServletContext();

        StaticInformationProvider provider = (StaticInformationProvider)context.getAttribute(
            "org.apache.pluto.portalImpl.StaticInformationProvider"
        );

        if (provider == null) {
            provider = new StaticInformationProviderImpl(servletConfig);
View Full Code Here


    public StaticInformationProvider getStaticProvider()
    {
        javax.servlet.ServletContext context = servletConfig.getServletContext();

        StaticInformationProvider provider =
            (StaticInformationProvider) context.getAttribute("org.apache.jetspeed.engine.core.StaticInformationProvider");

        if (provider == null)
        {
            provider = new StaticInformationProviderImpl(servletConfig);
View Full Code Here

    public StaticInformationProvider getStaticProvider() {
        // TODO stolen from portalImpl
        log.debug("getStaticProvider(): using default from portalImpl, fix this!");
        javax.servlet.ServletContext context = config.getServletContext();

        StaticInformationProvider provider =
            (StaticInformationProvider) context.getAttribute(STATIC);

        if (provider == null) {
            provider = new StaticInformationProviderImpl(config);
            context.setAttribute(STATIC, provider);
View Full Code Here

TOP

Related Classes of org.apache.pluto.services.information.StaticInformationProvider

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.