View Javadoc
1   /*
2    * Copyright (C) 2003-2011 eXo Platform SAS.
3    *
4    * This program is free software; you can redistribute it and/or
5    * modify it under the terms of the GNU Affero General Public License
6    * as published by the Free Software Foundation; either version 3
7    * of the License, or (at your option) any later version.
8    *
9    * This program is distributed in the hope that it will be useful,
10   * but WITHOUT ANY WARRANTY; without even the implied warranty of
11   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   * GNU General Public License for more details.
13   *
14   * You should have received a copy of the GNU General Public License
15   * along with this program; if not, see<http://www.gnu.org/licenses/>.
16   */
17  package org.exoplatform.wcm.webui.seo;
18  
19  
20  import java.util.Date;
21  
22  import org.exoplatform.webui.application.WebuiRequestContext;
23  import org.exoplatform.webui.config.annotation.ComponentConfig;
24  import org.exoplatform.webui.core.UIPopupContainer;
25  import org.exoplatform.webui.core.UIPortletApplication;
26  import org.exoplatform.webui.core.lifecycle.UIApplicationLifecycle;
27  /**
28   * Created by The eXo Platform SAS
29   * Author : eXoPlatform
30   *          exo@exoplatform.com
31   * Jul 4, 2011  
32   */
33  
34  @ComponentConfig(lifecycle = UIApplicationLifecycle.class)
35  public class UISEOToolbarPortlet extends UIPortletApplication  {
36  
37    public UISEOToolbarPortlet() throws Exception {
38      addChild(UIPopupContainer.class, null, "UIPopupContainer-" + new Date().getTime());
39      addChild(UISEOToolbarForm.class, null, null);  
40    }
41  
42  
43    @Override
44    public void processRender(WebuiRequestContext context) throws Exception {
45      super.processRender(context);
46    }
47  
48  
49  }