Package org.apache.portals.gems.dojo

Source Code of org.apache.portals.gems.dojo.AbstractDojoVelocityPortlet

/*
* 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.portals.gems.dojo;

import javax.portlet.PortletConfig;
import javax.portlet.PortletException;

import org.apache.jetspeed.headerresource.HeaderResource;
import org.apache.jetspeed.portlet.PortletHeaderRequest;
import org.apache.jetspeed.portlet.PortletHeaderResponse;
import org.apache.jetspeed.portlet.SupportsHeaderPhase;
import org.apache.portals.bridges.velocity.GenericVelocityPortlet;

/**
* Abstract DOJO portlet for inserting in cross context dojo widget includes
*
* @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
* @version $Id: $
*/
public abstract class AbstractDojoVelocityPortlet extends GenericVelocityPortlet implements SupportsHeaderPhase
{   
    protected String headerPage;

    /*
     * Portlet constructor.
     */
    public AbstractDojoVelocityPortlet()
    {
        super();
    }

    public void init(PortletConfig config) throws PortletException
    {
        super.init(config);
        this.headerPage = this.getInitParameter("HeaderPage");
    }
   
    /*
     * Include Dojo and Turbo header content using header resource component.
     *
     * @param request render request
     * @param response render response
     */   
    public void doHeader( PortletHeaderRequest request, PortletHeaderResponse response )
    throws PortletException
    {
        // use header resource component to ensure header logic is included only once
        HeaderResource headerResource = response.getHeaderResource();

        headerResource.dojoEnable();
        includeHeaderContent( headerResource );
       
        if ( this.headerPage != null )
        {
            include( request, response, this.headerPage );
        }
    }
   
    protected void includeHeaderContent( HeaderResource headerResource )
    {
        // do nothing - intended for derived classes
    }
   
    protected void include(PortletHeaderRequest request, PortletHeaderResponse response, String headerPagePath, StringBuffer headerText) throws PortletException
    {
        response.include(request, response, headerPagePath);
        headerText.append(response.getContent());
    }
   
    protected void include(PortletHeaderRequest request, PortletHeaderResponse response, String headerPagePath) throws PortletException
    {
        response.include(request, response, headerPagePath);
        response.getHeaderResource().addHeaderInfo(response.getContent());
    }
}
TOP

Related Classes of org.apache.portals.gems.dojo.AbstractDojoVelocityPortlet

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.