1/*2 * Copyright 2000-2001,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 at7 * 8 * http://www.apache.org/licenses/LICENSE-2.09 * 10 * Unless required by applicable law or agreed to in writing, software11 * 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 and14 * limitations under the License.15 */1617packageorg.apache.jetspeed.services.portletfactory;
1819//jetspeed stuff20import org.apache.jetspeed.portal.Portlet;
21import org.apache.jetspeed.portal.PortletException;
22import org.apache.jetspeed.om.profile.Entry;
23import org.apache.turbine.services.Service;
2425/***26 * This service handles the creation of Portlet objects27 * 28 * @author <a href="mailto:raphael@apache.org">Raphaël Luta</a>29 * @version $Id: PortletFactoryService.java,v 1.4 2004/02/23 03:36:42 jford Exp $30 */31publicinterfacePortletFactoryServiceextends Service
32 {
3334/*** The default control to use when none is specified */35public String SERVICE_NAME = "PortletFactory";
3637/***38 * Given a PSML Entry return an instanciated Portlet.39 *40 * @param entry a PSML Entry describing a portlet41 * @return an instanciated portlet corresponding to this entry42 */43publicPortlet getPortlet( Entry entry ) throws PortletException;
4445/***46 * Given a Portlet registry entry name, instanciate it47 *48 * @param name the name of a portlet in the registry49 * @return an instanciated portlet corresponding to this entry50 */51publicPortlet getPortlet( String name, String id ) throws PortletException;
52 }
53