org.opencms.ade.galleries.shared.CmsVfsEntryBean Maven / Gradle / Ivy
Show all versions of opencms-gwt Show documentation
/*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* For further information about Alkacon Software, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.ade.galleries.shared;
import org.opencms.util.CmsStringUtil;
import org.opencms.util.CmsUUID;
import java.util.ArrayList;
import java.util.List;
import com.google.gwt.user.client.rpc.IsSerializable;
/**
* Represents a single VFS resource entry for use by the VFS tab of the galleries.
*/
public class CmsVfsEntryBean implements IsSerializable, I_CmsGalleryTreeEntry {
/** Flag to indicate if the user has write permissions to the folder. */
private boolean m_editable;
/** Flag indicating whether this is entry should be displayed at the top level of the tree. */
private boolean m_isRoot;
/** The list of children. */
private List m_preloadedChildren;
/** The root path of the VFS entry. */
private String m_rootPath;
/** The site root of the entry. */
private String m_siteRoot;
/** The structure id. */
private CmsUUID m_structureId;
/** The folder title. */
private String m_title;
/**
* Creates a new VFS entry bean.
*
* @param rootPath the root path
* @param structureId the structure id
* @param title the folder title
* @param isRoot flag indicating whether this is entry should be displayed at the top level of the tree
* @param editable true
if the user has write permissions to the folder
* @param preloadedChildren the preloaded child nodes
*/
public CmsVfsEntryBean(
String rootPath,
CmsUUID structureId,
String title,
boolean isRoot,
boolean editable,
List preloadedChildren) {
m_rootPath = rootPath;
m_structureId = structureId;
m_isRoot = isRoot;
m_editable = editable;
m_title = title;
m_preloadedChildren = preloadedChildren;
}
/**
* Hidden default constructor.
*/
protected CmsVfsEntryBean() {
// do nothing
}
/**
* @see org.opencms.ade.galleries.shared.I_CmsGalleryTreeEntry#addChild(java.lang.Object)
*/
public void addChild(CmsVfsEntryBean child) {
if (m_preloadedChildren == null) {
m_preloadedChildren = new ArrayList();
}
m_preloadedChildren.add(child);
}
/**
* @see org.opencms.ade.galleries.shared.I_CmsGalleryTreeEntry#getChildren()
*/
public List getChildren() {
return m_preloadedChildren;
}
/**
* Gets the name which should be displayed in the widget representing this VFS entry.
*
* @return the name to display
*/
public String getDisplayName() {
if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(m_title)) {
return m_title;
}
if (m_isRoot) {
return getRootPath();
} else {
String fixedPath = getRootPath().replaceFirst("/$", "");
int lastSlash = fixedPath.lastIndexOf('/');
if (lastSlash == -1) {
return fixedPath;
}
return fixedPath.substring(lastSlash + 1);
}
}
/**
* Gets the root path of the VFS entry.
*
* @return the root path of the VFS entry
*/
public String getRootPath() {
return m_rootPath;
}
/**
* Gets the site root of this tree entry.
*
* @return the site root of this entry
*/
public String getSiteRoot() {
return m_siteRoot;
}
/**
* Returns the structure id.
*
* @return the structure id
*/
public CmsUUID getStructureId() {
return m_structureId;
}
/**
* Returns the editable flag. Indicate if the user has write permissions to the folder.
*
* @return the editable flag
*/
public boolean isEditable() {
return m_editable;
}
/**
* Returns true if this entry is a top-level entry.
*
* @return true if this is a top-level entry
*/
public boolean isRoot() {
return m_isRoot;
}
/**
* Sets the list of children.
*
* @param children the list of children
*/
public void setChildren(List children) {
m_preloadedChildren = children;
}
/**
* Sets if the user has write permissions to the folder.
*
* @param editable true
if the user has write permissions to the folder
*/
public void setEditable(boolean editable) {
m_editable = editable;
}
/**
* Sets the site root of this tree entry.
*
* @param siteRoot the site root of this tree entry
*/
public void setSiteRoot(String siteRoot) {
m_siteRoot = siteRoot;
}
}