-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserStore.xml
257 lines (246 loc) · 16.7 KB
/
UserStore.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<entityStoreData xmlns="http://www.vordel.com/2005/06/24/entityStore">
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" abstract="true" extends="Entity" name="RootChild"/>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" extends="RootChild" name="ESConfiguration">
<constant name="_version" type="integer" value="30"/>
<!--
Give this singleton a key.
-->
<field isKey="true" name="name" type="string"/>
<!--
We use this field to verify that the passphrase for the
encryped data is synchronized between the server and client, and
between multiple invocations of the client
-->
<field name="passphraseTest" type="encrypted"/>
<field name="version" type="string"/>
<!-- The product key should never change for the lifetime of the product -->
<field name="productKey" type="string"/>
<field cardinality="?" name="gitrev" type="string"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" abstract="true" extends="RootChild" name="LoadableModule">
<constant name="_version" type="integer" value="2"/>
<constant name="loadorder" type="integer" value="1000000"/>
<field cardinality="?" name="classloader" type="^ClassLoader"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" abstract="true" extends="LoadableModule" name="NamedLoadableModule">
<constant name="_version" type="integer" value="0"/>
<field cardinality="1" isKey="true" name="name" type="string"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" extends="NamedLoadableModule" name="UserStore">
<constant name="_version" type="integer" value="3"/>
<constant name="class" type="string" value="com.vordel.store.user.UserStore"/>
<constant name="loadorder" type="integer" value="150"/>
<componentType cardinality="*" name="Identity"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" abstract="true" extends="RootChild" name="NamedTopLevelGroup">
<constant name="_version" type="integer" value="0"/>
<field isKey="true" name="name" type="string"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" extends="Entity" name="IdentityAttribute">
<constant name="_version" type="integer" value="3"/>
<field isKey="true" name="name" type="string"/>
<field isKey="true" name="value" type="string"/>
<field cardinality="1" default="String" name="type" type="string"/>
<field cardinality="?" name="encryptedValue" type="encrypted"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" extends="Entity" name="Identity">
<constant name="_version" type="integer" value="1"/>
<componentType cardinality="*" name="IdentityAttribute"/>
<field cardinality="1" isKey="true" name="name" type="string"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" extends="Identity" name="Group">
<constant name="_version" type="integer" value="2"/>
<field cardinality="*" name="member" type="^Identity"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" extends="Identity" name="User">
<constant name="_version" type="integer" value="3"/>
<field cardinality="1" name="password" type="encrypted"/>
<field cardinality="?" name="certificate" type="^Certificate"/>
</entityType>
<entityType xmlns="http://www.vordel.com/2005/06/24/entityStore" extends="Entity" name="Root">
<componentType cardinality="*" name="RootChild"/>
<field isKey="true" name="name" type="string"/>
<!-- Used by the FileStore implementation, records the last time the store was written -->
<field name="lastModificationTime" type="utctime"/>
<!-- Used by the in-memory ad filestore implementations, records the next integer to use as a PK -->
<field name="pkInc" type="integer"/>
<!--
Provide a user-extensible means to tag an individual store, that won't interfere with federated store
composition. If it's done in the root node, then there are no synchronization issues across stores in the
federated context, as each store naturally has full control of its root node, with only the Primary Store's
root being visible via the federated view.
Provide a pair of multivalued string fields. It is up to the user to ensure that the contents are
synchronized. One string list acts as the key, with the entry in the corresponding list at the same index giving
the value for that key, e.g.
tagName[0] = 'gitrev'
tagName[0] = 'e39a0a77b92c5b82e5a662a7de0b33daeadfb170'
equates to the mapping 'gitrev' -> 'e39a0a77b92c5b82e5a662a7de0b33daeadfb170'
-->
<field cardinality="*" name="tagName" type="string"/>
<field cardinality="*" name="tagValue" type="string"/>
</entityType>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="Root" entityPK="0">
<fval name="name"><value>System Components</value></fval>
<fval name="tagName"><value>gitrev</value></fval>
<fval name="tagValue"><value>e7d840056194d0b285e312ae46f3d903f15ed9d9</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="ESConfiguration" entityPK="-5072052090654078989" parentPK="0">
<fval name="name"><value>Entity Store Configuration</value></fval>
<fval name="passphraseTest"><value>aHR0cDsvL3d3dy52b3JkZWwuY29t</value></fval>
<fval name="productKey"><value>VordelGateway</value></fval>
<fval name="version"><value>7.7.0</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="UserStore" entityPK="8520031882219658274" parentPK="0">
<fval name="name"><value>Default User Store</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="-7575883928971532716" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>Sarah</value></fval>
<fval name="password"><value>YXh3YXk=</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="Group" entityPK="-5972771687839388800" parentPK="8520031882219658274">
<fval name="member">
<value contentType="reference">
<key type='UserStore'><id field='name' value='Default User Store'/><key type='User'><id field='name' value='Garry'/></key></key> </value>
<value contentType="reference">
<key type='UserStore'><id field='name' value='Default User Store'/><key type='User'><id field='name' value='Genny'/></key></key> </value>
</fval>
<fval name="name"><value>Gold</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="Group" entityPK="-3010218994501876289" parentPK="8520031882219658274">
<fval name="member">
<value contentType="reference">
<key type='UserStore'><id field='name' value='Default User Store'/><key type='User'><id field='name' value='Sam'/></key></key> </value>
<value contentType="reference">
<key type='UserStore'><id field='name' value='Default User Store'/><key type='User'><id field='name' value='Sarah'/></key></key> </value>
<value contentType="reference">
<key type='UserStore'><id field='name' value='Default User Store'/><key type='User'><id field='name' value='Steve'/></key></key> </value>
</fval>
<fval name="name"><value>Silver</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="-2804683122014252516" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>sampleuser</value></fval>
<fval name="password"><value>Y2hhbmdlbWU=</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="-8543048480132904016" parentPK="-2804683122014252516">
<fval name="name"><value>family_name</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>User</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="-7650828010748540244" parentPK="-2804683122014252516">
<fval name="name"><value>locale</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>en</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="-3338350740635864794" parentPK="-2804683122014252516">
<fval name="name"><value>given_name</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>Sample</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="-1465633767868793045" parentPK="-2804683122014252516">
<fval name="name"><value>gender</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>female</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="5484794847077852441" parentPK="-2804683122014252516">
<fval name="name"><value>role</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>resourceowner</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="5920964481260551134" parentPK="-2804683122014252516">
<fval name="name"><value>hd</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>apigateway.sample</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="6996542887359322652" parentPK="-2804683122014252516">
<fval name="name"><value>picture</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>/xlib/images/sampleuser.png</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="8019580319756523058" parentPK="-2804683122014252516">
<fval name="name"><value>email_verified</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>true</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="8759382196699577301" parentPK="-2804683122014252516">
<fval name="name"><value>email</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>[email protected]</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="-2686747004796739007" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>user1</value></fval>
<fval name="password"><value>YXh3YXk=</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="-1283903636710208602" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>Sam</value></fval>
<fval name="password"><value>YXh3YXk=</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="-1080353669561977699" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>Steve</value></fval>
<fval name="password"><value>YXh3YXk=</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="6023938047786325744" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>Garry</value></fval>
<fval name="password"><value>YXh3YXk=</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="7816729472144939614" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>regadmin</value></fval>
<fval name="password"><value>Y2hhbmdlbWU=</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="-8602441648759826184" parentPK="7816729472144939614">
<fval name="name"><value>role</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>admin</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="-6423942325103077267" parentPK="7816729472144939614">
<fval name="name"><value>family_name</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>Admin</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="-5039656938528783860" parentPK="7816729472144939614">
<fval name="name"><value>picture</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>/xlib/images/regadmin.png</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="3095696147056291277" parentPK="7816729472144939614">
<fval name="name"><value>given_name</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>Reg</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="3548625923070406570" parentPK="7816729472144939614">
<fval name="name"><value>hd</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>apigateway.sample</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="5803378128285476589" parentPK="7816729472144939614">
<fval name="name"><value>email</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>[email protected]</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="6245479661139637536" parentPK="7816729472144939614">
<fval name="name"><value>gender</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>male</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="8272463252552802010" parentPK="7816729472144939614">
<fval name="name"><value>email_verified</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>true</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="IdentityAttribute" entityPK="9076059314230152030" parentPK="7816729472144939614">
<fval name="name"><value>locale</value></fval>
<fval name="type"><value>String</value></fval>
<fval name="value"><value>en</value></fval>
</entity>
<entity xmlns="http://www.vordel.com/2005/06/24/entityStore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="User" entityPK="8520692754292920393" parentPK="8520031882219658274">
<fval name="certificate"><value contentType="reference">-1</value></fval>
<fval name="name"><value>Genny</value></fval>
<fval name="password"><value>YXh3YXk=</value></fval>
</entity>
</entityStoreData>