1 /* 2 * Copyright 1999-2002,2004 The Apache Software Foundation. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.apache.cocoon.portal; 17 18 import org.apache.avalon.framework.component.Component; 19 import org.apache.avalon.framework.parameters.Parameters; 20 import org.apache.cocoon.ProcessingException; 21 import org.xml.sax.ContentHandler; 22 import org.xml.sax.SAXException; 23 24 /** 25 * This is the main component that has currently two actions: 26 * Invoke the request processing using the {@link #process()} method, 27 * this starts the event handling for the current request (evaluating 28 * request parameters etc.) 29 * The section method {@link #showPortal(ContentHandler, Parameters)} 30 * starts rendering the portal. 31 * 32 * @author <a HREF="mailto:cziegeler@s-und-n.de">Carsten Ziegeler</a> 33 * @author <a HREF="mailto:volker.schmitt@basf-it-services.com">Volker Schmitt</a> 34 * 35 * @version CVS $Id: PortalManager.java 30932 2004-07-29 17:35:38Z vgritsenko $ 36 */ 37 public interface PortalManager extends Component { 38 39 String ROLE = PortalManager.class.getName(); 40 41 void process() 42 throws ProcessingException; 43 44 void showPortal(ContentHandler ch, 45 Parameters parameters) 46 throws SAXException; 47 48 } 49