You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by we...@apache.org on 2004/08/01 17:41:51 UTC

cvs commit: jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/factory PortletFactory.java

weaver      2004/08/01 08:41:51

  Added:       jetspeed-api/src/java/org/apache/jetspeed/factory
                        PortletFactory.java
  Log:
  Refactored a PortletFactory interface
  
  Revision  Changes    Path
  1.1                  jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/factory/PortletFactory.java
  
  Index: PortletFactory.java
  ===================================================================
  /*
   * Copyright 2000-2001,2004 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   * 
   *      http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  package org.apache.jetspeed.factory;
  
  import javax.portlet.Portlet;
  import javax.portlet.PortletException;
  import javax.servlet.ServletConfig;
  
  import org.apache.pluto.om.portlet.PortletDefinition;
  
  /**
   * <p>
   * PortletFactory
   * </p>
   * <p>
   * 
   * </p>
   * 
   * @author <a href="mailto:weaver@apache.org">Scott T. Weaver </a>
   * @version $Id: PortletFactory.java,v 1.1 2004/08/01 15:41:50 weaver Exp $
   *  
   */
  public interface PortletFactory
  {
      void addClassLoader( ClassLoader cl );
  
      Portlet loadPortletClass( String className ) throws InstantiationException, IllegalAccessException;
  
      Portlet getPortlet( ServletConfig servletConfig, PortletDefinition portletDefinition ) throws PortletException;
  
  }
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org