Package org.apache.jetspeed.container

Examples of org.apache.jetspeed.container.PortletRequestContext


        return new Enumerator(configuration.getKeys());
    }
   
    private Collection getSupportedModes()
    {
        PortletRequestContext ctx = PortletRequestContext.getContext();
        if ( ctx != null )
        {
            PortletApplication pa = ((PortletApplication)ctx.getPortletDefinition().getPortletApplicationDefinition());
            return pa.getSupportedPortletModes();
        }
        return JetspeedActions.getStandardPortletModes();
    }
View Full Code Here


        return getSupportedModes().contains(mode);
    }

    private Collection getSupportedStates()
    {
        PortletRequestContext ctx = PortletRequestContext.getContext();
        if ( ctx != null )
        {
            PortletApplication pa = ((PortletApplication)ctx.getPortletDefinition().getPortletApplicationDefinition());
            return pa.getSupportedWindowStates();
        }
        return JetspeedActions.getStandardWindowStates();
    }
View Full Code Here

        return new Enumerator(configuration.getKeys());
    }
   
    private Collection getSupportedModes()
    {
        PortletRequestContext ctx = PortletRequestContext.getContext();
        if ( ctx != null )
        {
            PortletApplication pa = ((PortletApplication)ctx.getPortletDefinition().getPortletApplicationDefinition());
            return pa.getSupportedPortletModes();
        }
        return JetspeedActions.getStandardPortletModes();
    }
View Full Code Here

        return getSupportedModes().contains(mode);
    }

    private Collection getSupportedStates()
    {
        PortletRequestContext ctx = PortletRequestContext.getContext();
        if ( ctx != null )
        {
            PortletApplication pa = ((PortletApplication)ctx.getPortletDefinition().getPortletApplicationDefinition());
            return pa.getSupportedWindowStates();
        }
        return JetspeedActions.getStandardWindowStates();
    }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.container.PortletRequestContext

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.