View Javadoc
1   /***************************************************************************
2    * Copyright 2001-2008 The eXo Platform SARL         All rights reserved.  *
3    * Please look at license.txt in info directory for more license detail.   *
4    **************************************************************************/
5   package org.exoplatform.ecm.webui.component.admin.unlock;
6   
7   import org.exoplatform.webui.config.annotation.ComponentConfig;
8   import org.exoplatform.webui.core.UIContainer;
9   import org.exoplatform.webui.core.lifecycle.UIContainerLifecycle;
10  
11  /**
12   * Created by The eXo Platform SARL
13   * Author : Hoang Van Hung
14   *          hunghvit@gmail.com
15   * Dec 3, 2008
16   */
17  
18  @ComponentConfig(
19      lifecycle = UIContainerLifecycle.class
20  )
21  
22  public class UILockHolderContainer extends UIContainer {
23  
24    public UILockHolderContainer() throws Exception {
25      addChild(UILockHolderList.class, null, null);
26      addChild(UIPermissionSelector.class, null, null);
27    }
28  }