|
Revision 394
(checked in by douglm, 7 years ago)
|
Two major components to this update.
New xml options module - the intent is to move run-time options into the xml
and leave build time properties in the current properties file. An xml element
can define a class with the usual setters to hold values defined by it's child
elements. Curently only ldap properties are set.
New ldap groups module. Allow us to move forward on user client development.
|
| Line | |
|---|
| 1 |
<bedework-options> |
|---|
| 2 |
<org> |
|---|
| 3 |
<bedework> |
|---|
| 4 |
<global> |
|---|
| 5 |
<module> |
|---|
| 6 |
<user-ldap-group classname="org.bedework.calcore.ldap.LdapConfigProperties"> |
|---|
| 7 |
<initialContextFactory>com.sun.jndi.ldap.LdapCtxFactory</initialContextFactory> |
|---|
| 8 |
<providerUrl>ldap://localhost/</providerUrl> |
|---|
| 9 |
<groupContextDn>ou=groups, dc=bedework, dc=org</groupContextDn> |
|---|
| 10 |
<groupMemberAttr>uniqueMember</groupMemberAttr> |
|---|
| 11 |
<userDnPrefix>uid=</userDnPrefix> |
|---|
| 12 |
<userDnSuffix>,ou=accounts, dc=bedework, dc=org</userDnSuffix> |
|---|
| 13 |
<groupDnPrefix>cn=</groupDnPrefix> |
|---|
| 14 |
<groupDnSuffix>,ou=groups, dc=bedework, dc=org</groupDnSuffix> |
|---|
| 15 |
<debug>true</debug> |
|---|
| 16 |
</user-ldap-group> |
|---|
| 17 |
</module> |
|---|
| 18 |
</global> |
|---|
| 19 |
</bedework> |
|---|
| 20 |
</org> |
|---|
| 21 |
</bedework-options> |
|---|
| 22 |
|
|---|