Skip to content

Commit

Permalink
Doc fix. (#3096)
Browse files Browse the repository at this point in the history
  • Loading branch information
uprego authored and SavvasMisaghMoayyed committed Dec 13, 2017
1 parent fa9216d commit 2354a98
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -109,7 +109,7 @@ To access the service, the principal must have a `cn` attribute whose value is e
"ssoEnabled" : true,
"requiredAttributes" : {
"@class" : "java.util.HashMap",
"cn" : [ "java.util.HashSet", [ "admin, Admin, TheAdmin" ] ]
"cn" : [ "java.util.HashSet", [ "admin", "Admin", "TheAdmin" ] ]
}
}
}
Expand All @@ -134,8 +134,8 @@ OR the principal must have a `member` attribute whose value is either of `admins
"ssoEnabled" : true,
"requiredAttributes" : {
"@class" : "java.util.HashMap",
"cn" : [ "java.util.HashSet", [ "admin, Admin, TheAdmin" ] ],
"member" : [ "java.util.HashSet", [ "admins, adminGroup, staff" ] ]
"cn" : [ "java.util.HashSet", [ "admin", "Admin", "TheAdmin" ] ],
"member" : [ "java.util.HashSet", [ "admins", "adminGroup", "staff" ] ]
}
}
}
Expand All @@ -161,8 +161,8 @@ also must not have an attribute "role" whose value matches the pattern `deny.+`.
"ssoEnabled" : true,
"requiredAttributes" : {
"@class" : "java.util.HashMap",
"cn" : [ "java.util.HashSet", [ "admin, Admin, TheAdmin" ] ],
"member" : [ "java.util.HashSet", [ "admins, adminGroup, staff" ] ]
"cn" : [ "java.util.HashSet", [ "admin", "Admin", "TheAdmin" ] ],
"member" : [ "java.util.HashSet", [ "admins", "adminGroup", "staff" ] ]
},
"rejectedAttributes" : {
"@class" : "java.util.HashMap",
Expand Down

0 comments on commit 2354a98

Please sign in to comment.