org.plasma.sdo.profile.ConcurrentDataFlavor Maven / Gradle / Ivy
//==============================================================================
//
// This software artifact was generated using PlasmaSDO
// provisioning tools.
//
//==============================================================================
package org.plasma.sdo.profile;
/**
*
* Specifies the nature of the data with respect to concurrency for a UML Property
*
* @author Plasma-Team
* @version 2.0.0
*/
public enum ConcurrentDataFlavor{
/**
* Indicates the data is an integral version number, typically incremented for every successful update of the owning entity.
*/
version,
/**
* Indicates the data represents a system username, typically reset to the current system user on successful update of the owning entity.
*/
user,
/**
* Indicates the data is temporal in nature typically reset to the system data or time for every successful update of the owning entity.
*/
time,
}