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

org.ligoj.bootstrap.resource.system.configuration.ConfigurationVo Maven / Gradle / Ivy

There is a newer version: 3.1.22
Show newest version
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.bootstrap.resource.system.configuration;

import org.ligoj.bootstrap.model.system.SystemConfiguration;

import lombok.Getter;
import lombok.Setter;

/**
 * "Configuration" value with source information.
 */
@Getter
@Setter
public class ConfigurationVo extends SystemConfiguration {

	/**
	 * SID
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * When true is backed by an entity.
	 */
	private boolean persisted;

	/**
	 * When true the value is secured and need to be read on-demand.
	 */
	private boolean secured;

	/**
	 * When true the value is defined in system and persisted and different from the database value.
	 */
	private boolean overridden;

	/**
	 * The property source.
	 */
	private String source;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy