
org.ligoj.bootstrap.resource.system.configuration.ConfigurationEditionVo Maven / Gradle / Ivy
/*
* 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 for edition.
*/
@Getter
@Setter
public class ConfigurationEditionVo extends SystemConfiguration {
/**
* SID
*/
private static final long serialVersionUID = 1L;
/**
* Optional previous name. When defined, the configuration will be renamed.
*/
private String oldName;
/**
* 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.
*/
private boolean system;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy