KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > communication > forum > ForumServiceContainer


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.communication.forum;
6
7 import java.util.List JavaDoc;
8
9 /**
10  * Created by The eXo Platform SARL .
11  * Author : Tuan Nguyen
12  * tuan08@users.sourceforge.net
13  * Date: Jun 14, 2003
14  * Time: 1:12:22 PM
15  */

16 public interface ForumServiceContainer {
17   public ForumService findForumService(String JavaDoc owner) throws Exception JavaDoc;
18   public ForumService createForumService(String JavaDoc owner) throws Exception JavaDoc;
19   public List JavaDoc getForumOwners() throws Exception JavaDoc ;
20   
21   public void addForumEventListener(ForumEventListener listener) ;
22 }
23
Popular Tags