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

org.opencms.gwt.shared.property.CmsPropertyModification 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, 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.property;

import org.opencms.util.CmsUUID;

import java.util.Map;

import com.google.gwt.user.client.rpc.IsSerializable;

/**
 * A class which represents a property modification.

* * @since 8.0.0 */ public class CmsPropertyModification implements IsSerializable { /** The file name property name, use to edit the filename within a property dialog. */ public static final String FILE_NAME_PROPERTY = "~~~file_name_property~~~"; /** The resource id for which the property changed. */ private CmsUUID m_id; /** A flag which indicates whether the structure value changed. */ private boolean m_isStructureValue; /** The name of the property. */ private String m_name; /** The new value. */ private String m_value; /** * Copy constructor.

* * @param propMod the modification bean from which to copy the data */ public CmsPropertyModification(CmsPropertyModification propMod) { m_id = propMod.m_id; m_name = propMod.m_name; m_value = propMod.m_value; m_isStructureValue = propMod.m_isStructureValue; } /** * Creates a new property modification bean.

* @param resourceId the resource id for which the property changed * @param propertyName the name of the property * @param value the new property value * @param isStructureValue flag which indicates whether the structure value changed */ public CmsPropertyModification(CmsUUID resourceId, String propertyName, String value, boolean isStructureValue) { m_id = resourceId; m_name = propertyName; m_value = value; m_isStructureValue = isStructureValue; } /** * Creates a new property modification bean.

* @param path a path of the form id/propertyname/mode, where mode is either S for structure or R for resource * * @param value the new property value */ public CmsPropertyModification(String path, String value) { String[] pathComponents = path.split("/"); String idStr = pathComponents[0]; String propName = pathComponents[1]; String mode = pathComponents[2]; CmsUUID id = new CmsUUID(idStr); m_id = id; m_name = propName; m_value = value; m_isStructureValue = mode.equals(CmsClientProperty.PATH_STRUCTURE_VALUE); } /** * Empty constructor for serialization.

*/ protected CmsPropertyModification() { // empty constructor for serialization } /** * Returns the id of the resource for which to change properties.

* * @return the id of ther resource for which to change properties */ public CmsUUID getId() { return m_id; } /** * Returns the property name.

* * @return the property name */ public String getName() { return m_name; } /** * Returns the new value.

* * @return the new value */ public String getValue() { return m_value; } /** * Checks if this is the file name property.

* * @return true in case of the file name property */ public boolean isFileNameProperty() { return FILE_NAME_PROPERTY.equals(m_name); } /** * Flag which indicates a structure value change.

* * @return true if the structure value was changed */ public boolean isStructureValue() { return m_isStructureValue; } /** * Helper method for applying the change to a property map.

* * @param props a map of properties */ public void updatePropertyInMap(Map props) { CmsClientProperty prop = props.get(getName()); if (prop == null) { prop = new CmsClientProperty(getName(), "", ""); props.put(getName(), prop); } if (isStructureValue()) { prop.setStructureValue(getValue()); } else { prop.setResourceValue(getValue()); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy