org.opencms.gwt.shared.alias.CmsAliasEditValidationRequest Maven / Gradle / Ivy
Show all versions of opencms-test 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.gwt.shared.alias;
import java.util.ArrayList;
import java.util.List;
import com.google.gwt.user.client.rpc.IsSerializable;
/**
* Bean which is sent to the server when validating an alias table.
*/
public class CmsAliasEditValidationRequest implements IsSerializable {
/** The already edited data. */
private List m_editedData;
/** The new entry added by the user (may be null). */
private CmsAliasTableRow m_newEntry;
/** The original data before any of it was edited. */
private List m_originalData;
/** Default constructor. */
public CmsAliasEditValidationRequest() {
}
/**
* Creates a new instance.
*
* @param originalData the original data
* @param editedData the edited data
* @param newEntry the new entry which has been added (may be null)
*/
public CmsAliasEditValidationRequest(
List originalData,
List editedData,
CmsAliasTableRow newEntry) {
m_originalData = originalData;
m_editedData = editedData;
m_newEntry = newEntry;
}
/**
* Gets the edited data.
*
* @return the edited data
*/
public List getEditedData() {
return m_editedData;
}
/**
* Gets the new entry added by the user.
*
* @return the new entry, or null if there is no new entry
*/
public CmsAliasTableRow getNewEntry() {
return m_newEntry;
}
/**
* Gets the original data list.
*
* @return the original list of data
*/
public List getOriginalData() {
return m_originalData;
}
/**
* Sets the edited data list.
*
* @param data the edited data list
*/
public void setEditedData(List data) {
m_editedData = new ArrayList();
m_editedData.addAll(data);
}
/**
* Sets the new entry.
*
* @param newEntry the new entry
*/
public void setNewEntry(CmsAliasTableRow newEntry) {
m_newEntry = newEntry;
}
/**
* Sets the original data list.
*
* @param originalData the original data list
*/
public void setOriginalData(List originalData) {
m_originalData = originalData;
}
}