org.opencms.gwt.shared.alias.CmsAliasImportResult 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 com.google.gwt.user.client.rpc.IsSerializable;
/**
* A bean representing the result of trying to import a single alias.
*/
public class CmsAliasImportResult implements IsSerializable {
/** The alias path. */
private String m_aliasPath;
/** The line containing the data for the alias. */
private String m_line;
/** The message from importing the alias. */
private String m_message;
/** The alias mode. */
private CmsAliasMode m_mode;
/** The import status. */
private CmsAliasImportStatus m_status;
/** The alias target path. */
private String m_targetPath;
/**
* Creates a new instance.
*
* @param status the import status
* @param message the import message
* @param aliasPath the alias path
* @param targetPath the target path
* @param mode the alias mode
*/
public CmsAliasImportResult(
CmsAliasImportStatus status,
String message,
String aliasPath,
String targetPath,
CmsAliasMode mode) {
m_message = message;
m_status = status;
m_aliasPath = aliasPath;
m_targetPath = targetPath;
m_mode = mode;
}
/**
* Creates a new instance.
*
* @param line the line containing the alias data
* @param status the import status
* @param message the import message
*/
public CmsAliasImportResult(String line, CmsAliasImportStatus status, String message) {
m_line = line;
m_status = status;
m_message = message;
}
/**
* Default constructor used for serialization.
*/
protected CmsAliasImportResult() {
// do nothing
}
/**
* Gets the alias path.
*
* @return the alias path
*/
public String getAliasPath() {
return m_aliasPath;
}
/**
* Gets the line containing the alias data.
*
* @return the line containing the alias data
*/
public String getLine() {
return m_line;
}
/**
* Gets the import message.
*
* @return the import message
*/
public String getMessage() {
return m_message;
}
/**
* Gets the alias mode.
*
* @return the alias mode
*/
public CmsAliasMode getMode() {
return m_mode;
}
/**
* Gets the status.
*
* @return the status
*/
public CmsAliasImportStatus getStatus() {
return m_status;
}
/**
* Gets the alias target path.
*
* @return the alias target path
*/
public String getTargetPath() {
return m_targetPath;
}
/**
* Sets the line containing the alias data.
*
* @param line the line containing the alias data
*/
public void setLine(String line) {
m_line = line;
}
}