1 5 package org.exoplatform.services.portal; 6 7 import org.exoplatform.services.portal.model.*; 8 9 15 public interface Interceptor { 16 public PortalConfig getPortalConfig(String owner) throws Exception ; 17 public void savePortalConfig(PortalConfig config) throws Exception ; 18 19 public Page getPage(String pageId) throws Exception ; 20 public void savePage(Page page) throws Exception ; 21 22 public void saveNodeNavigation(String owner , Node node) throws Exception ; 23 public Node getNodeNavigation(String owner) throws Exception ; 24 } | Popular Tags |