KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portal > Interceptor


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;
6
7 import org.exoplatform.services.portal.model.*;
8
9 /**
10  * Jul 15, 2004
11  * @author: Tuan Nguyen
12  * @email: tuan08@users.sourceforge.net
13  * @version: $Id: Interceptor.java,v 1.2 2004/07/20 12:41:07 tuan08 Exp $
14  */

15 public interface Interceptor {
16   public PortalConfig getPortalConfig(String JavaDoc owner) throws Exception JavaDoc ;
17   public void savePortalConfig(PortalConfig config) throws Exception JavaDoc ;
18   
19   public Page getPage(String JavaDoc pageId) throws Exception JavaDoc ;
20   public void savePage(Page page) throws Exception JavaDoc ;
21   
22   public void saveNodeNavigation(String JavaDoc owner , Node node) throws Exception JavaDoc ;
23   public Node getNodeNavigation(String JavaDoc owner) throws Exception JavaDoc ;
24 }
Popular Tags