This repository was archived by the owner on Feb 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.xml
60 lines (60 loc) · 1.61 KB
/
model.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<featureModel chosenLayoutAlgorithm="1">
<struct>
<and mandatory="true" name="iris">
<and mandatory="true" name="services">
<feature mandatory="true" name="sendMessage"/>
<feature mandatory="true" name="receiveMessage"/>
</and>
<feature name="addressBook"/>
<alt mandatory="true" name="persistence">
<feature mandatory="true" name="relational"/>
<feature mandatory="true" name="nonRelational"/>
</alt>
<feature name="tagging"/>
<alt mandatory="true" name="ui">
<feature mandatory="true" name="console"/>
<feature abstract="true" mandatory="true" name="gui"/>
</alt>
<alt name="search">
<feature mandatory="true" name="simpleSearch"/>
<feature mandatory="true" name="advancedSearch"/>
</alt>
<or name="security">
<feature mandatory="true" name="sign"/>
<feature mandatory="true" name="verify"/>
<feature mandatory="true" name="encrypt"/>
<feature mandatory="true" name="decrypt"/>
</or>
</and>
</struct>
<constraints>
<rule>
<eq>
<var>sign</var>
<var>verify</var>
</eq>
</rule>
<rule>
<eq>
<var>encrypt</var>
<var>decrypt</var>
</eq>
</rule>
<rule>
<imp>
<var>advancedSearch</var>
<var>nonRelational</var>
</imp>
</rule>
<rule>
<imp>
<var>simpleSearch</var>
<var>relational</var>
</imp>
</rule>
</constraints>
<calculations Auto="true" Constraints="true" Features="true" Redundant="true" Tautology="true"/>
<comments/>
<featureOrder userDefined="false"/>
</featureModel>