Hi,
It's possible to get instances of these components in next way
```
from org.jboss.seam import Component
...
ldapEntryManager = Component.getInstance("ldapEntryManager")
ldapAuthEntryManagerList = Component.getInstance("ldapAuthEntryManager")
```
oxAuth uses ldapEntryManager to work with internal LDAP DB.
It uses ldapAuthEntryManagerList only for user authentication. It's not empty list if you specified LDAP Authentication configuaration on: https://ce-server/identity/authentication/configuration
After getting LdapEntryManager you can get all required object usings next get methods:
```
ldapEntryManager.getLdapOperationService().getConnectionProvider()
```
Also you can get instance of [AuthenticationService](https://github.com/GluuFederation/oxAuth/blob/master/Server/src/main/java/org/xdi/oxauth/service/AuthenticationService.java) which useful for user authentication.
There are method in this [script](https://github.com/GluuFederation/oxAuth/blob/master/Server/integrations/basic.multi_auth_conf/BasicMultiAuthConfExternalAuthenticator.py) 'createLdapExtendedEntryManagers' and 'createLdapExtendedConfigurations' which shows how to create own instance of LdapEntryManager.
Regards,
Yuriy