Bug 512121 - Harmonise enumerations for data consistency and data stability
Summary: Harmonise enumerations for data consistency and data stability
Status: NEW
Alias: None
Product: App4mc
Classification: Automotive
Component: Models (show other bugs)
Version: 0.7.2   Edit
Hardware: All All
: P3 enhancement
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-02-13 09:28 EST by Andreas Sailer CLA
Modified: 2018-10-17 01:59 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andreas Sailer CLA 2017-02-13 09:28:21 EST
The following three enumerations used in the model are basically the same and should be harmonised:

enum OsDataConsistencyMode {
	_undefined_ // Display: "<data consistency mode>"
	noProtection
	automaticProtection
	customProtection
	handledByModelElements
}

enum LabelDataStability {
	_undefined_ // Display: "<data stability>"
	noProtection
	automaticProtection
	customProtection
	handledByModelElements
}

enum LabelAccessDataStability {
	_undefined_ // Display: "<data stability>"
	inherited
	noProtection
	automaticProtection
	customProtection
	handledByModelElements
}