use of org.nhindirect.stagent.cert.impl.LdapCertUtilImpl in project nhin-d by DirectProject.
the class LdapCertificateStoreProvider method get.
public CertificateResolver get() {
final Hashtable<String, String> env = new Hashtable<String, String>();
env.put(Context.INITIAL_CONTEXT_FACTORY, LDAP_FACTORY);
String[] ldapURLs = ldapConfiguration.getLdapURLs();
String ldapProviderUrl = null;
for (String ldapURL : ldapURLs) {
if (ldapProviderUrl == null) {
ldapProviderUrl = ldapURL + " ";
} else {
ldapProviderUrl += ldapURL + " ";
}
}
env.put(Context.PROVIDER_URL, ldapProviderUrl);
if (ldapConfiguration.getLdapConnectionTimeOut() != null) {
try {
int connectionTimeOut = Integer.parseInt(ldapConfiguration.getLdapConnectionTimeOut());
if (connectionTimeOut < 1) {
LOGGER.error("Connection timeout must be a positive integer");
throw new NHINDException("Invalid value for the LDAP connection timeout");
}
} catch (NumberFormatException nfe) {
LOGGER.error("Connection timeout string is not a valid number.");
throw new NHINDException("Invalid value for the LDAP connection timeout", nfe);
}
env.put(LDAP_TIMEOUT, ldapConfiguration.getLdapConnectionTimeOut());
}
if (ldapConfiguration.getEmployLdapAuthInformation() != null) {
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.SECURITY_PRINCIPAL, ldapConfiguration.getEmployLdapAuthInformation().getLdapPrincipal());
env.put(Context.SECURITY_CREDENTIALS, ldapConfiguration.getEmployLdapAuthInformation().getLdapPassword());
} else {
env.put(Context.SECURITY_AUTHENTICATION, "none");
}
LdapEnvironment ldapEnvironment = new LdapEnvironment(env, ldapConfiguration.getReturningCertAttribute(), ldapConfiguration.getLdapSearchBase(), ldapConfiguration.getLdapSearchAttribute());
LdapCertUtilImpl ldapcertUtilImpl = new LdapCertUtilImpl(ldapEnvironment, ldapConfiguration.getLdapCertPassphrase(), ldapConfiguration.getCertificateFormat());
return new LDAPCertificateStore(ldapcertUtilImpl, bootstrapStore, policy);
}
Aggregations