Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[NOTASK]
add subject source configuration
Jj!
committed
Dec 1, 2023
1 parent
78f8655
commit 2c454f4
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ldap.ldap.pass = admin | ||
ldap.ldap.searchResultHandlers = org.ldaptive.handler.DnAttributeEntryHandler,edu.internet2.middleware.grouper.ldap.ldaptive.GrouperRangeEntryHandler | ||
ldap.ldap.uiTestAttributeName = uid | ||
ldap.ldap.uiTestExpectedValue = GrouperSystem | ||
ldap.ldap.uiTestFilter = uid=GrouperSystem | ||
ldap.ldap.uiTestSearchDn = ou=People,dc=unicon,dc=local | ||
ldap.ldap.uiTestSearchScope = SUBTREE_SCOPE | ||
ldap.ldap.url = ldap://directory | ||
ldap.ldap.user = cn=admin,dc=unicon,dc=local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
subjectApi.source.ldap.adapterClass = edu.internet2.middleware.grouper.subj.GrouperLdapSourceAdapter2_5 | ||
subjectApi.source.ldap.attribute.0.name = uid | ||
subjectApi.source.ldap.attribute.0.subjectIdentifier = true | ||
subjectApi.source.ldap.attribute.0.translationType = sourceAttributeSameAsSubjectAttribute | ||
subjectApi.source.ldap.attribute.1.name = cn | ||
subjectApi.source.ldap.attribute.1.translationType = sourceAttributeSameAsSubjectAttribute | ||
subjectApi.source.ldap.id = ldap | ||
subjectApi.source.ldap.name = ldap | ||
subjectApi.source.ldap.numberOfAttributes = 2 | ||
subjectApi.source.ldap.param.Description_AttributeType.value = cn | ||
subjectApi.source.ldap.param.Name_AttributeType.value = cn | ||
subjectApi.source.ldap.param.SubjectID_AttributeType.value = uid | ||
subjectApi.source.ldap.param.ldapServerId.value = ldap | ||
subjectApi.source.ldap.param.subjectIdentifierAttribute0.value = uid | ||
subjectApi.source.ldap.search.search.param.filter.value = (&(!(uid=GrouperSystem))(|(uid=%TERM%)(cn=*%TERM%*))) | ||
subjectApi.source.ldap.search.searchSubject.param.base.value = ou=People,dc=unicon,dc=local | ||
subjectApi.source.ldap.search.searchSubject.param.filter.value = (&(!(uid=GrouperSystem))(uid=%TERM%)) | ||
subjectApi.source.ldap.search.searchSubject.param.scope.value = SUBTREE_SCOPE | ||
subjectApi.source.ldap.search.searchSubjectByIdentifier.param.filter.value = (&(!(uid=GrouperSystem))(uid=%TERM%)) | ||
subjectApi.source.ldap.searchAttribute.0.attributeName = uid | ||
subjectApi.source.ldap.searchAttribute.1.attributeName = cn | ||
subjectApi.source.ldap.searchAttributeCount = 2 | ||
subjectApi.source.ldap.sortAttribute.0.attributeName = uid | ||
subjectApi.source.ldap.sortAttribute.1.attributeName = cn | ||
subjectApi.source.ldap.sortAttributeCount = 2 | ||
subjectApi.source.ldap.types = person |