Marks an exception triggered inside an identity provider implementation
112113114115116117118119120
} catch(AuthenticationException e) { throw new LdapAuthenticationException("Could not authenticate with LDAP server", e); } catch(NamingException e) { throw new IdentityProviderException("Could not connect to LDAP server", e); } }
191192193194195196197198199200201
} return userList; } catch (NamingException e) { throw new IdentityProviderException("Could not query for users", e); } finally { try { if (enumeration != null) { enumeration.close();
235236237238239240241242243244245
390391392393394395396397398399400
} return groupList; } catch (NamingException e) { throw new IdentityProviderException("Could not query for users", e); } finally { try { if (enumeration != null) { enumeration.close();
523524525526527528529530
} initialContext.setRequestControls(controls.toArray(new Control[0])); } catch (Exception e) { throw new IdentityProviderException("Exception while setting paging settings", e); } }