01: /*
02: * Created on Apr 1, 2003
03: */
04: package net.sf.jportlet.service;
05:
06: import java.util.Enumeration;
07:
08: import net.sf.jportlet.portlet.Portlet;
09: import net.sf.jportlet.portlet.PortletException;
10:
11: /**
12: * @author <a href="mailto:tchbansi@sourceforge.net">Herve Tchepannou</a>
13: */
14: public interface PortletServiceContext {
15: //~ Methods ----------------------------------------------------------------
16:
17: public PortletService getPortletService(String name)
18: throws PortletServiceNotFoundException,
19: PortletServiceUnavailableException;
20:
21: public Enumeration getPortletNames();
22:
23: public Portlet getPortlet(String name) throws PortletException;
24: }
|