1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.pluto.driver.deploy;
18
19 import java.io.IOException;
20
21 import org.apache.pluto.descriptors.services.PortletAppDescriptorService;
22
23 /***
24 * Service interface defining a mechanism for registering
25 * a portlet application with a portal.
26 *
27 * @author <a href="ddewolf@apache.org">David H. DeWolf</a>
28 * @version 1.0
29 * @since Mar 9, 2005
30 */
31 public interface PortalRegistrarService {
32
33 /***
34 * Register the application defined by the service.
35 * @param service
36 */
37 void register(PortletAppDescriptorService service)
38 throws IOException;
39 }