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

org.geomajas.configuration.EditableAttributeInfo Maven / Gradle / Ivy

There is a newer version: 1.18.5
Show newest version
/*
 * This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
 *
 * Copyright 2008-2015 Geosparc nv, http://www.geosparc.com/, Belgium.
 *
 * The program is available in open source according to the GNU Affero
 * General Public License. All contributions in this program are covered
 * by the Geomajas Contributors License Agreement. For full licensing
 * details, see LICENSE.txt in the project root.
 */

package org.geomajas.configuration;

import org.geomajas.annotation.Api;

/**
 * ...
 *
 * @author Joachim Van der Auwera
 * @since 1.10.0
 */
@Api(allMethods = true)
public interface EditableAttributeInfo {

	/**
	 * Indicates whether the layer is capable of of storing values at the data level.
	 * 

* It does not give any indication of whether the logged user is allowed to edit the attribute, for that * purpose use the {@link org.geomajas.security.SecurityContext}. * * @return does the layer have to capability of writing this attribute? */ boolean isEditable(); /** * Set whether the layer has the capability of writing values for this attribute at the data level. *

* It does not give any indication of whether the logged user is allowed to edit the attribute, for that * purpose use the {@link org.geomajas.security.SecurityContext}. * * @param editable "editable" capability for attribute */ void setEditable(boolean editable); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy