Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2010-08-06 18:52:07 +0000
committerddunne2010-08-06 18:52:07 +0000
commit92e5b5e2ec8cb42b56e48f5e3e918852e5dad29f (patch)
tree15770d62abb0e2c930c57303d087929dee19035d
parent811f9771fb1ca31c3ee1376ea1b15500b4d7e73d (diff)
downloadorg.eclipse.osee-92e5b5e2ec8cb42b56e48f5e3e918852e5dad29f.tar.gz
org.eclipse.osee-92e5b5e2ec8cb42b56e48f5e3e918852e5dad29f.tar.xz
org.eclipse.osee-92e5b5e2ec8cb42b56e48f5e3e918852e5dad29f.zip
added Access Context Id attribute type
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee14
1 files changed, 13 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee b/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee
index 2809c5b2039..ffb06b3555d 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee
+++ b/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee
@@ -233,7 +233,7 @@ artifactType "Group Artifact" extends "Artifact" {
guid "ABM4FTvWVzDQsTsM6jQA"
}
-artifactType "User Group" extends "Group Artifact" {
+artifactType "User Group" extends "Abstract Access Controlled", "Group Artifact" {
guid "AAMFDhrEbXqZKPfWkwAA"
}
@@ -436,6 +436,11 @@ abstract artifactType "MS Word" extends "Artifact" {
attribute "Imported Paragraph Number"
}
+abstract artifactType "Abstract Access Controlled" extends "Artifact" {
+ guid "AAFVUREVAxmEmLW2KkAA"
+ attribute "Access Context Id"
+}
+
artifactType "MS Word Whole Document" extends "MS Word" {
guid "ABM9Dt9SyGjwuvem7SQA"
attribute "Whole Word Content"
@@ -471,6 +476,13 @@ attributeType "Imported Paragraph Number" extends StringAttribute {
"This is the corresponding section number from the outline of document from which this artifact was imported"
}
+attributeType "Access Context Id" extends StringAttribute {
+ guid "AAFAgR3B7AN_g0NPCLAA"
+ dataProvider DefaultAttributeDataProvider
+ min 0
+ max unlimited
+}
+
artifactType "Requirement" extends "Artifact" {
guid "ABM_vxEEowY+8i2_q9gA"
attribute "Development Assurance Level"

Back to the top