/* * Copyright (C) 2005-2008 Alfresco Software Limited. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * As a special exception to the terms and conditions of version 2.0 of * the GPL, you may redistribute this Program in connection with Free/Libre * and Open Source Software ("FLOSS") applications as described in Alfresco's * FLOSS exception. You should have recieved a copy of the text describing * the FLOSS exception, and it is also available here: * http://www.alfresco.com/legal/licensing" */ package org.alfresco.web.bean.wcm; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import javax.faces.context.FacesContext; import org.alfresco.model.ContentModel; import org.alfresco.service.namespace.QName; import org.alfresco.wcm.asset.AssetService; import org.alfresco.web.bean.dialog.BaseDialogBean; import org.alfresco.web.bean.repository.Repository; /** * Bean implementation for the AVM "Create Folder" dialog. * * @author Kevin Roast */ public class CreateFolderDialog extends BaseDialogBean { private static final long serialVersionUID = 5501238017264037644L; //private static final Log logger = LogFactory.getLog(CreateFolderDialog.class); transient private AssetService assetService; protected AVMBrowseBean avmBrowseBean; protected String name; protected String title; protected String description; /** * @see org.alfresco.web.bean.dialog.BaseDialogBean#init(java.util.Map) */ @Override public void init(Map parameters) { super.init(parameters); this.name = null; this.description = null; } /** * @param avmBrowseBean The avmBrowseBean to set. */ public void setAvmBrowseBean(AVMBrowseBean avmBrowseBean) { this.avmBrowseBean = avmBrowseBean; } /** * @param assetService The assetService to set. */ public void setAssetService(AssetService assetService) { this.assetService = assetService; } protected AssetService getAssetService() { if (assetService == null) { assetService = Repository.getServiceRegistry(FacesContext.getCurrentInstance()).getAssetService(); } return assetService; } /** * @return Returns the description. */ public String getDescription() { return this.description; } /** * @param description The description to set. */ public void setDescription(String description) { this.description = description; } /** * @return Returns the title. */ public String getTitle() { return this.title; } /** * @param title The title to set. */ public void setTitle(String title) { this.title = title; } /** * @return Returns the name. */ public String getName() { return this.name; } /** * @param name The name to set. */ public void setName(String name) { this.name = name; } // ------------------------------------------------------------------------------ // Dialog implementation /** * @see org.alfresco.web.bean.dialog.BaseDialogBean#finishImpl(javax.faces.context.FacesContext, java.lang.String) */ @Override protected String finishImpl(FacesContext context, String outcome) throws Exception { String parent = this.avmBrowseBean.getCurrentPath(); Map properties = new HashMap(2); if (title != null && title.length() != 0) { properties.put(ContentModel.PROP_TITLE, title); } if (description != null && description.length() != 0) { properties.put(ContentModel.PROP_DESCRIPTION, description); } String[] parts = parent.split(":"); String sbStoreId = parts[0]; String path = parts[1]; this.getAssetService().createFolder(sbStoreId, path, this.name, properties); return outcome; } }