All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.pluto.container.PortletInvokerService Maven / Gradle / Ivy

There is a newer version: 3.1.2
Show newest version
/*
 * 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.pluto.container;

import java.io.IOException;

import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import javax.portlet.EventRequest;
import javax.portlet.EventResponse;
import javax.portlet.PortletException;
import javax.portlet.PortletRequest;
import javax.portlet.PortletResponse;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import javax.portlet.ResourceRequest;
import javax.portlet.ResourceResponse;


/**
 * Service used to invoke portlets.
 */
public interface PortletInvokerService {

    /**
     * The key used to bind the PortletRequest to the underlying
     * HttpServletRequest.
     */
    String PORTLET_REQUEST = "javax.portlet.request";

    /**
     * The key used to bind the PortletResponse to the underlying
     * HttpServletRequest.
     */
    String PORTLET_RESPONSE = "javax.portlet.response";

    /**
     * The key used to bind the PortletConfig to the underlying
     * PortletConfig.
     */
    String PORTLET_CONFIG = "javax.portlet.config";

    /**
     * The request attribute key used to retrieve the PortletRequestContext instance
     */
    String REQUEST_CONTEXT = PortletRequestContext.class.getName();

    /**
     * The request attribute key used to retrieve the PortletRequestContext instance
     */
    String RESPONSE_CONTEXT = PortletResponseContext.class.getName();

    /**
     * The key used to bind the method of processing being requested by the
     * container to the underlying PortletRquest.
     */
    String METHOD_ID = "org.apache.pluto.core.method";

    /**
     * The unique method identifier for render requests.  Render requests are
     * requested through a call to the {@link PortletContainer#doRender(org.apache.pluto.container.PortletWindow,
     * javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)}
     * method.
     */
    Integer METHOD_RENDER = new Integer(1);

    /**
     * The unique method identifier for render requests.  Render requests are
     * requested through a call to the {@link PortletContainer#doAction(org.apache.pluto.container.PortletWindow,
     * javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)}
     * method.
     */
    Integer METHOD_ACTION = new Integer(3);

    /**
     * The unique method identifier for load requests.  Load requests are
     * requested through a call to the {@link PortletContainer#doLoad(org.apache.pluto.container.PortletWindow,
     * javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)}
     * method.
     */
    Integer METHOD_LOAD = new Integer(5);

    /**
     * The unique method identifier for resource Serving requests.  Resource requests are
     * requested through a call to the {@link PortletContainer#doServeResource(PortletWindow,
     *  javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)}
     * method.
     */
    Integer METHOD_RESOURCE = new Integer(7);

    /**
     * The unique method identifier for render requests.  Render requests are
     * requested through a call to the {@link PortletContainer#doEvent(org.apache.pluto.container.PortletWindow,
     * javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, javax.portlet.Event)}
     * method.
     */
    Integer METHOD_EVENT = new Integer(9);

    /**
     * The unique method identifier for admin requests.  Admin requests
     * are requested through a call to the {@link PortletContainer#doAdmin(PortletWindow, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)}
     * method.
     */
    Integer  METHOD_ADMIN = new Integer(11);

    /**
     * The public key, to store the FilterManager in the request.
     */
    String FILTER_MANAGER = "FilterManager";

    void action(PortletRequestContext ctx, ActionRequest req, ActionResponse res, FilterManager filterManager)
    throws IOException, PortletException, PortletContainerException;

    void event(PortletRequestContext ctx, EventRequest request, EventResponse response, FilterManager filterManager)
    throws IOException, PortletException, PortletContainerException;

    void render(PortletRequestContext ctx, RenderRequest req, RenderResponse res, FilterManager filterManager)
    throws IOException, PortletException, PortletContainerException;

    void serveResource(PortletRequestContext ctx, ResourceRequest req, ResourceResponse res, FilterManager filterManager)
    throws IOException, PortletException, PortletContainerException;

    void load(PortletRequestContext ctx, PortletRequest req, PortletResponse res)
    throws IOException, PortletException, PortletContainerException;

    void admin(PortletRequestContext ctx, PortletRequest req, PortletResponse res)
    throws IOException, PortletException, PortletContainerException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy