Package org.apache.jetspeed.aggregator.impl

Source Code of org.apache.jetspeed.aggregator.impl.PortletHeaderRequestImpl

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jetspeed.aggregator.impl;

import javax.portlet.PortletPreferences;

import org.apache.jetspeed.portlet.PortletHeaderRequest;
import org.apache.jetspeed.request.RequestContext;
import org.apache.pluto.core.impl.PortletPreferencesImpl;
import org.apache.pluto.om.common.ParameterSet;
import org.apache.pluto.om.common.Parameter;
import org.apache.pluto.om.window.PortletWindow;


public class PortletHeaderRequestImpl implements PortletHeaderRequest
{
    private RequestContext requestContext;
    private String portletApplicationContextPath;
    private PortletWindow portletWindow;
    private ParameterSet initParamSet;
   
    public PortletHeaderRequestImpl( RequestContext requestContext, PortletWindow portletWindow, String portletApplicationContextPath )
    {
        this.requestContext = requestContext;
        this.portletApplicationContextPath = portletApplicationContextPath;
        this.portletWindow = portletWindow;
    }
   
    public String getPortalContextPath()
    {
        return requestContext.getRequest().getContextPath();
    }   
   
    public PortletPreferences getPreferences()
    {
        return new PortletPreferencesImpl(org.apache.pluto.Constants.METHOD_NOOP, this.portletWindow.getPortletEntity());
    }
   
    public String getInitParameter( String name )
    {
        ParameterSet iParamSet = this.initParamSet;
        if ( iParamSet == null )
        {
            iParamSet = this.portletWindow.getPortletEntity().getPortletDefinition().getInitParameterSet();
            this.initParamSet = iParamSet;
        }
        if ( iParamSet != null )
        {
            Parameter initParam = iParamSet.get( name );
            if ( initParam != null )
            {
                return initParam.getValue();
            }
        }
        return null;
    }
   
    /**
     * @return Returns the portletApplicationContextPath.
     */
    public String getPortletApplicationContextPath()
    {
        return portletApplicationContextPath;
    }
   
}
TOP

Related Classes of org.apache.jetspeed.aggregator.impl.PortletHeaderRequestImpl

TOP
Copyright © 2018 www.massapi.com. 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.