org.springframework.samples.petportal.portlet
Class WelcomePortlet

java.lang.Object
  extended by javax.portlet.GenericPortlet
      extended by org.springframework.samples.petportal.portlet.WelcomePortlet
All Implemented Interfaces:
javax.portlet.Portlet, javax.portlet.PortletConfig

public class WelcomePortlet
extends javax.portlet.GenericPortlet

An example of a pre-existing JSR-168 compliant portlet which is used in the demonstration of Spring's PortletWrappingController. View the bean definitions in welcome-portlet.xml for details.

Author:
John A. Lewis, Mark Fisher, Juergen Hoeller

Constructor Summary
WelcomePortlet()
           
 
Method Summary
 void doView(javax.portlet.RenderRequest request, javax.portlet.RenderResponse response)
           
 
Methods inherited from class javax.portlet.GenericPortlet
destroy, doDispatch, doEdit, doHelp, getInitParameter, getInitParameterNames, getPortletConfig, getPortletContext, getPortletName, getResourceBundle, getTitle, init, init, processAction, render
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WelcomePortlet

public WelcomePortlet()
Method Detail

doView

public void doView(javax.portlet.RenderRequest request,
                   javax.portlet.RenderResponse response)
            throws javax.portlet.PortletException,
                   java.io.IOException
Overrides:
doView in class javax.portlet.GenericPortlet
Throws:
javax.portlet.PortletException
java.io.IOException


John A. Lewis, Mark Fisher, Juergen Hoeller