KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portal > community > CommunityConfigService


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.portal.community;
6
7 import java.util.List JavaDoc ;
8 import org.exoplatform.services.organization.Group ;
9 /**
10  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
11  * @since Dec 4, 2004
12  * @version $Id$
13  */

14 public interface CommunityConfigService {
15   public CommunityPortal findCommunityPortal(String JavaDoc user) throws Exception JavaDoc ;
16   public CommunityPortal getCommunityPortal(Group group) throws Exception JavaDoc ;
17   public void addCommunityPortal(CommunityPortal cp) throws Exception JavaDoc ;
18   public void removeCommunityPortal(CommunityPortal cp) throws Exception JavaDoc ;
19   
20   
21   public List JavaDoc findCommunityNavigation(String JavaDoc user) throws Exception JavaDoc ;
22   public CommunityNavigation getCommunityNavigation(Group group) throws Exception JavaDoc ;
23   public void addCommunityNavigation(CommunityNavigation cn) throws Exception JavaDoc ;
24   public void removeCommunityNavigation(CommunityNavigation cn) throws Exception JavaDoc ;
25 }
26
Popular Tags