KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > portal > impl > PortletPortalManager


1 /*
2  * Copyright 2004-2005 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.impl;
17
18 import org.apache.avalon.framework.activity.Initializable;
19 import org.apache.avalon.framework.parameters.Parameters;
20 import org.apache.cocoon.portal.coplet.adapter.impl.PortletAdapter;
21 import org.apache.cocoon.util.Deprecation;
22
23 /**
24  * Extends the PortalManager by initializing Pluto
25  *
26  * @author <a HREF="mailto:cziegeler@apache.org">Carsten Ziegeler</a>
27  * @deprecated Use the {@link org.apache.cocoon.portal.coplet.adapter.impl.PortletAdapter}.
28  * @version CVS $Id: PortletPortalManager.java 326102 2005-10-18 13:29:15Z cziegeler $
29  */

30 public class PortletPortalManager
31     extends PortalManagerImpl
32     implements Initializable {
33
34     /**
35      * @see org.apache.avalon.framework.activity.Initializable#initialize()
36      */

37     public void initialize() throws Exception JavaDoc {
38         Deprecation.logger.info("The PortletPortalManager is deprecated. Please use the PortletPortalManagerAspect instead.");
39         PortletAdapter aspect = (PortletAdapter)this.adapterSelector.select("portlet");
40         this.chain.addAsFirst(aspect, new Parameters());
41     }
42 }
43
44
Popular Tags