this is the portlet from doc

import org.apache.jetspeed.portal.portlets.AbstractPortlet;

import org.apache.turbine.util.RunData;

import org.apache.ecs.*;

public class HelloWorldPortlet extends AbstractPortlet

{

    public ConcreteElement getContent (RunData aRunData)

    {

        return (new StringElement ("Hello World!"));

    }

}

 

where i have to put the class file of this portlet and what entry to  make in .cfcg file and how to run it

 

Reply via email to