JVM Languages
portlet.txt
Associated article: Developing JSR-168 Portlets
Tags: Web Development JVM Languages Design
Published source code accompanying the article by Ted O'Connor and Martin Snyder in which they examine the JSR-168 portlet specification and use the API to build portlets--applications viewed inside portal frameworks.
Developing JSR-168 Portlets
by Ted O'Connor and Martin Snyder
Listing One
package com.docway.publishedfolder.portlet;
import java.io.IOException;
import javax.portlet.*;
/** Main portlet class. Handles render requests from portal framework. */
public class PublishedFolder extends GenericPortlet
{
public void doView(...


