UISymLinkManager.java
/*
* Copyright (C) 2003-2007 eXo Platform SAS.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see<http://www.gnu.org/licenses/>.
*/
package org.exoplatform.ecm.webui.component.explorer.symlink;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
import org.exoplatform.webui.config.annotation.ComponentConfig;
import org.exoplatform.webui.core.UIContainer;
import org.exoplatform.webui.core.UIPopupComponent;
import org.exoplatform.webui.core.UIPopupWindow;
import org.exoplatform.webui.core.lifecycle.UIContainerLifecycle;
/**
* Created by The eXo Platform SARL
* Author : Dang Van Minh
* minh.dang@exoplatform.com
* May 24, 2007 2:12:48 PM
*/
@ComponentConfig(
lifecycle = UIContainerLifecycle.class
)
public class UISymLinkManager extends UIContainer implements UIPopupComponent {
private static final Log LOG = ExoLogger.getLogger(UISymLinkManager.class.getName());
final static public String EXTARNAL_METADATA_POPUP = "AddMetadataPopup" ;
public UISymLinkManager() throws Exception {
addChild(UISymLinkForm.class, null, null);
addChild(UISymLinkContainer.class, null, null).setRendered(false);
}
public void enableLocalizationMode() {
UISymLinkForm linkForm = this.getChild(UISymLinkForm.class);
linkForm.enableLocalizationMode();
}
public UIPopupWindow initPopupTaxonomy(String id) throws Exception {
UIPopupWindow uiPopup = getChildById(id);
if (uiPopup == null) {
uiPopup = addChild(UIPopupWindow.class, null, id);
}
uiPopup.setWindowSize(700, 350);
uiPopup.setShow(false);
uiPopup.setResizable(true);
return uiPopup;
}
public void activate() {
try {
UISymLinkForm uiUploadForm = getChild(UISymLinkForm.class);
uiUploadForm.initFieldInput();
} catch (Exception e) {
if (LOG.isErrorEnabled()) {
LOG.error("Unexpected error!", e.getMessage());
}
}
}
public void deActivate() {}
public void initMetadataPopup() throws Exception {
removeChildById(EXTARNAL_METADATA_POPUP) ;
UIPopupWindow uiPopup = addChild(UIPopupWindow.class, null, EXTARNAL_METADATA_POPUP) ;
uiPopup.setShowMask(true);
uiPopup.setWindowSize(400, 400);
uiPopup.setRendered(true);
uiPopup.setShow(true) ;
uiPopup.setResizable(true) ;
}
public void useWorkspaceSelector() {
UISymLinkForm child = getChild(UISymLinkForm.class);
if (child!=null) {
child.useWorkspaceSelector();
}
}
}