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

org.geomajas.configuration.AbstractEditableAttributeInfo 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;
import org.geomajas.configuration.validation.ValidatorInfo;

/**
 * Base information which is shared between all editable attributes.
 *
 * @author Joachim Van der Auwera
 * @since 1.10.0 split out of AttributeInfo
 */
@Api(allMethods = true)
public abstract class AbstractEditableAttributeInfo extends AbstractReadOnlyAttributeInfo
		implements EditableAttributeInfo {

	private static final long serialVersionUID = 1100L;

	private ValidatorInfo validator = new ValidatorInfo();
	private boolean editable;

	/** No-arguments constructor needed for GWT. */
	public AbstractEditableAttributeInfo() {
		super();
	}

	/**
	 * Get validator for attribute.
	 *
	 * @return validator
	 */
	public ValidatorInfo getValidator() {
		return validator;
	}

	/**
	 * Set validator for attribute.
	 *
	 * @param validator validator
	 */
	public void setValidator(ValidatorInfo validator) {
		this.validator = validator;
	}

	/**
	 * 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? */ public boolean isEditable() { return editable; } /** * 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 */ public void setEditable(boolean editable) { this.editable = editable; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy