Skip to main content
summaryrefslogtreecommitdiffstats
blob: f859e264424bb2b907d70f3e7393a88ce9c3125f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//import "platform:/org.eclipse.osee.framework.core.dsl.integration.test/testTypeModel.osee"
artifactType "Artifact" {
   guid "BZOUrxO35x+LBZkEYzAA"
}

artifactType "Software Requirement" extends "Artifact" {
   guid "BZO4PuM+Oz58hpAcTGwA"
}

attributeType "Qualification Method" extends StringAttribute {
   guid "BZPB25t9fRVnLuII6+wA"
   dataProvider DefaultAttributeDataProvider
   min 0
   max 1
   defaultValue "test"
}

artifact "Software Items" artGuid "AAMFEcWy0xc4e3tcem99";
artifact "Systems" artGuid "AAMFEcWy0xc4e3tcem88";
artifact "SubSystems" artGuid "AAMFEcWy0xc4e3tcem77";

// Access Contexts

accessContext "System Context" {
   guid "AAMFEcWy0xc4e3tcem11";
   DENY edit artifactType "Artifact";
   childrenOf "Software Items" {
      DENY edit artifactType "Artifact";
   }

   childrenOf "Systems" {
      DENY edit artifactType "Artifact";
   }

   childrenOf "SubSystems" {
      DENY edit artifactType "Artifact";
   }

}

accessContext "subsystem.requirement.writer" extends "System Context" {
   guid "AAMFEcWy0xc4e3tcem22";
   DENY edit attributeType "Qualification Method" of artifactType "Software Requirement";

   //	ALLOW edit attributeType "Annotation" of artifactType "Software Requirement";
   ALLOW edit attributeType "Qualification Method" of artifactType "Software Requirement";
   ALLOW edit attributeType "Qualification Method" of artifactType "Software Requirement";

   //   childrenOf "SubSystem Requirement" {
   //      ALLOW edit artifactType "Artifact";
   //   }
   //}
   //
   //accessContext "software.requirement.writer" extends "System Context" {
   //	guid "AAMFEcWy0xc4e3tcem33";
   //	childrenOf "SubSystem Requirement" { 
   //		ALLOW edit artifactType "Artifact";
   //	}

}

Back to the top