/*
* Created on Apr 1, 2003
*/
package net.sf.jportlet.service;
import java.util.Enumeration;
import net.sf.jportlet.portlet.Portlet;
import net.sf.jportlet.portlet.PortletException;
/**
* @author <a href="mailto:tchbansi@sourceforge.net">Herve Tchepannou</a>
*/
public interface PortletServiceContext
{
//~ Methods ----------------------------------------------------------------
public PortletService getPortletService( String name )
throws PortletServiceNotFoundException,
PortletServiceUnavailableException;
public Enumeration getPortletNames( );
public Portlet getPortlet( String name )
throws PortletException;
}
|