Commit 89b4fc93 authored by dockx thibault's avatar dockx thibault
Browse files

Merge branch...

Merge branch '6357-core-new-token-branch-with-new-objectclass-allowing-management-of-specific-tokens' into 'dev'

Resolve "[core] - new token branch with new objectClass allowing management of specific tokens"

See merge request fusiondirectory/fd!1096
Showing with 34 additions and 1 deletion
+34 -1
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## core-fd.schema - Needed by FusionDirectory for its basic functionalities ## core-fd.schema - Needed by FusionDirectory for its basic functionalities
## ##
# Last OID used for attributes : 1.3.6.1.4.1.38414.62.1.69 01/10/24 # # Last OID used for attributes : 1.3.6.1.4.1.38414.62.1.73 01/10/24 #
# Last OID used for objectClass : 1.3.6.1.4.1.38414.62.2.11 29/01/24 # # Last OID used for objectClass : 1.3.6.1.4.1.38414.62.2.11 29/01/24 #
##### Attributes from gosa ###### ##### Attributes from gosa ######
...@@ -429,6 +429,32 @@ attributetype ( 1.3.6.1.4.1.38414.62.1.54 NAME 'fdTasksRepeatableSchedule' ...@@ -429,6 +429,32 @@ attributetype ( 1.3.6.1.4.1.38414.62.1.54 NAME 'fdTasksRepeatableSchedule'
SUBSTR caseIgnoreSubstringsMatch SUBSTR caseIgnoreSubstringsMatch
SYNTAX '1.3.6.1.4.1.1466.115.121.1.15') SYNTAX '1.3.6.1.4.1.1466.115.121.1.15')
##### Token management attributes #####
attributetype ( 1.3.6.1.4.1.38414.62.1.70 NAME 'fdTokenUserDN'
DESC 'The DN user linked to the token'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15)
attributetype ( 1.3.6.1.4.1.38414.62.1.71 NAME 'fdTokenType'
DESC 'The token type eg reminder, recovery'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15)
attributetype ( 1.3.6.1.4.1.38414.62.1.72 NAME 'fdToken'
DESC 'The token'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15)
attributetype ( 1.3.6.1.4.1.38414.62.1.73 NAME 'fdTokenTimestamp'
DESC 'Timestamp for the validation of the token'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15)
##### Classes ##### ##### Classes #####
### old gosa ObjectClass ### ### old gosa ObjectClass ###
...@@ -522,3 +548,10 @@ objectclass (1.3.6.1.4.1.38414.62.2.9 NAME 'fdTasksConf' ...@@ -522,3 +548,10 @@ objectclass (1.3.6.1.4.1.38414.62.2.9 NAME 'fdTasksConf'
SUP top AUXILIARY SUP top AUXILIARY
MUST ( cn ) MUST ( cn )
MAY ( fdTasksRDN $ fdTasksConfLastExecTime $ fdTasksConfMaxEmails $ fdTasksConfIntervalEmails)) MAY ( fdTasksRDN $ fdTasksConfLastExecTime $ fdTasksConfMaxEmails $ fdTasksConfIntervalEmails))
### token objectclass ###
objectclass ( 1.3.6.1.4.1.38414.62.2.11 NAME 'fdTokenEntry'
SUP top STRUCTURAL
DESC 'FusionDirectory - Class for token storage'
MUST ( cn $ fdTokenUserDN $ fdTokenType $ fdToken $ fdTokenTimestamp ))
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment