org.opencms.ade.containerpage.shared.CmsRemovedElementStatus 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 (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.containerpage.shared;
import org.opencms.gwt.shared.CmsListInfoBean;
import org.opencms.util.CmsUUID;
import com.google.gwt.user.client.rpc.IsSerializable;
/**
* A bean used to store information about a container page element which was just removed.
*/
public class CmsRemovedElementStatus implements IsSerializable {
/** The list info bean to display. */
private CmsListInfoBean m_elementInfo;
/** True if this element is a possible deletion candidate. */
private boolean m_isDeletionCandidate;
/** The structure id of the removed element. */
private CmsUUID m_structureId;
/**
* Creates a new instance.
*
* @param structureId the structure id of the removed element
* @param elementInfo the list info bean for the removed element
* @param deletable true if this is a possible deletion candidate
*/
public CmsRemovedElementStatus(CmsUUID structureId, CmsListInfoBean elementInfo, boolean deletable) {
m_isDeletionCandidate = deletable;
m_elementInfo = elementInfo;
m_structureId = structureId;
}
/**
* Default constructor for serialization.
*/
protected CmsRemovedElementStatus() {
// empty default constructor for serialization
}
/**
* Gets the list info bean for the removed element.
*
* @return the list info bean for the removed element
*/
public CmsListInfoBean getElementInfo() {
return m_elementInfo;
}
/**
* Gets the structure id of the removed element.
*
* @return the structure id of the removed element
*/
public CmsUUID getStructureId() {
return m_structureId;
}
/**
* Returns true if the removed element is a possible candidate for deletion.
*
* @return true if the removed element is a deletion candidate
*/
public boolean isDeletionCandidate() {
return m_isDeletionCandidate;
}
}