All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencms.importexport.CmsImportParameters Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 18.0
Show newest version
/*
 * 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 GmbH & Co. KG, 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.importexport;

/**
 * Import parameters.

* * @since 7.0.4 */ public class CmsImportParameters { /** The path in the OpenCms VFS to import into.*/ private String m_destinationPath; /** If set, the permissions set on existing resources will not be modified.*/ private boolean m_keepPermissions; /** The file path, could be a folder or a zip file. */ private String m_path; /** If set, the manifest.xml file will be validated during the import. */ private boolean m_xmlValidation; /** * Constructor.

* * @param path the file path, could be a folder or a zip file * @param destination path in the OpenCms VFS to import into * @param keepPermissions if set, the permissions set on existing resources will not be modified */ public CmsImportParameters(String path, String destination, boolean keepPermissions) { setPath(path); setDestinationPath(destination); setKeepPermissions(keepPermissions); } /** * Returns the path in the OpenCms VFS to import into.

* * @return the path in the OpenCms VFS to import into */ public String getDestinationPath() { return m_destinationPath; } /** * Returns the file path, could be a folder or a zip file.

* * @return the file path */ public String getPath() { return m_path; } /** * Returns the keep permissions flags. * if set, the permissions set on existing resources will not be modified.

* * @return the keep permissions flag */ public boolean isKeepPermissions() { return m_keepPermissions; } /** * Checks if the manifest.xml file will be validated during the import.

* * @return the xml validation flag */ public boolean isXmlValidation() { return m_xmlValidation; } /** * Sets the path in the OpenCms VFS to import into.

* * @param importPath the import path to set */ public void setDestinationPath(String importPath) { m_destinationPath = importPath; } /** * Sets the keep permissions flag. * If set, the permissions set on existing resources will not be modified.

* * @param keepPermissions the keep permissions flag to set */ public void setKeepPermissions(boolean keepPermissions) { m_keepPermissions = keepPermissions; } /** * Sets the file path, could be a folder or a zip file.

* * @param path the file path, could be a folder or a zip file */ public void setPath(String path) { m_path = path; } /** * Sets the xml validation flag. If set, the manifest.xml file will be validated during the import.

* * @param xmlValidation the xml validation flag to set */ public void setXmlValidation(boolean xmlValidation) { m_xmlValidation = xmlValidation; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy