]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.server.jcr/src/org/argeo/jcr/argeo.cnd
Adapt to package names changes in Spring Security
[lgpl/argeo-commons.git] / org.argeo.server.jcr / src / org / argeo / jcr / argeo.cnd
1 <argeo = 'http://www.argeo.org/ns/argeo'>
2
3 // GENERIC TYPES NOT AVAILABLE IN JCR
4 [argeo:link] > mix:created, mix:lastModified
5 mixin
6 // URI(s)
7 - argeo:uri (STRING) m
8
9 [argeo:references] > nt:unstructured
10 - * (REFERENCE) *
11
12 // DATA MODEL
13 [argeo:dataModel] > mix:created, mix:lastModified, mix:versionable
14 mixin
15 - argeo:uri (STRING) m
16 - argeo:dataModelVersion (STRING) m
17
18 // USER NODES
19 // user should be lower case, between 3 and 15 characters long
20 [argeo:userHome] > mix:created, mix:lastModified
21 mixin
22 - argeo:userID (STRING) m
23 - argeo:remoteRoles (STRING) *
24 // deprecated. for backward compatibility:
25 + argeo:profile (argeo:userProfile)
26 + argeo:keyring (argeo:pbeSpec)
27 + argeo:preferences (argeo:preferenceNode)
28
29 [argeo:userProfile] > mix:created, mix:lastModified, mix:title, mix:versionable
30 mixin
31 - argeo:userID (STRING) m
32 - argeo:enabled (BOOLEAN)
33 - argeo:accountNonExpired (BOOLEAN)
34 - argeo:accountNonLocked (BOOLEAN)
35 - argeo:credentialsNonExpired (BOOLEAN)
36
37 [argeo:preferenceNode] > mix:lastModified, mix:versionable
38 mixin
39 + * (argeo:preferenceNode) * version
40
41 [argeo:remoteRepository] > nt:unstructured
42 - argeo:uri (STRING)
43 - argeo:userID (STRING)
44 + argeo:password (argeo:encrypted)
45
46 // TABULAR CONTENT
47 [argeo:table] > nt:file
48 + * (argeo:column) *
49
50 [argeo:column] > mix:title
51 - jcr:requiredType (STRING) = 'STRING'
52
53 [argeo:csv] > nt:resource
54
55 // CRYPTO
56 [argeo:encrypted] > nt:base
57 mixin
58 // initialization vector used by some algorithms
59 - argeo:iv (BINARY)
60
61 [argeo:pbeKeySpec] > nt:base
62 mixin
63 - argeo:secretKeyFactory (STRING)
64 - argeo:salt (BINARY)
65 - argeo:iterationCount (LONG)
66 - argeo:keyLength (LONG)
67 - argeo:secretKeyEncryption (STRING)
68
69 [argeo:pbeSpec] > argeo:pbeKeySpec
70 mixin
71 - argeo:cipher (STRING)
72