Package org.acegisecurity.providers.ldap

Examples of org.acegisecurity.providers.ldap.LdapDataAccessException


                    addAttributeValuesToRoleSet(roleAttribute, userRoles);
                }
            }
        } catch (NamingException e) {
            throw new LdapDataAccessException("Group search failed for user " + userDn, e);
        } finally {
            LdapUtils.closeContext(ctx);
        }

        if (logger.isDebugEnabled()) {
View Full Code Here


                } else {
                    logger.warn("Non-String value found for role attribute " + roleAttribute.getID());
                }
            }
        } catch(NamingException ne) {
            throw new LdapDataAccessException("Error retrieving values for role attribute " +
                    roleAttribute.getID(), ne);
        }
    }
View Full Code Here

TOP

Related Classes of org.acegisecurity.providers.ldap.LdapDataAccessException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.