1 5 package org.exoplatform.services.communication.forum; 6 7 import java.util.List ; 8 9 16 public interface ForumServiceContainer { 17 public ForumService findForumService(String owner) throws Exception ; 18 public ForumService createForumService(String owner) throws Exception ; 19 public List getForumOwners() throws Exception ; 20 21 public void addForumEventListener(ForumEventListener listener) ; 22 } 23 | Popular Tags |