Package org.apache.pluto.core

Examples of org.apache.pluto.core.InternalPortletContext


    }

    // Access to InternalPortletContext
    public static javax.servlet.ServletContext getServletContext(PortletContext context)
    {
        InternalPortletContext internalContext = CoreUtils.getInternalContext(context);
        return internalContext.getServletContext();
    }
View Full Code Here


        return internalContext.getServletContext();
    }

    public static PortletApplicationDefinition getPortletApplicationDefinition(PortletContext context)
    {
        InternalPortletContext internalContext = CoreUtils.getInternalContext(context);
        return internalContext.getInternalPortletApplicationDefinition();
    }
View Full Code Here

TOP

Related Classes of org.apache.pluto.core.InternalPortletContext

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.