Package org.springframework.ldap.core

Examples of org.springframework.ldap.core.DirContextAdapter.attributeExists()


                adapter = (DirContextAdapter) ldapTemplate
                        .lookup(roleLdap.getRoleLdap() + "," + groupsPath);
            } catch (org.springframework.ldap.NamingException ne) {
                LOG.error(ne.getMessage());
            }
            if (adapter != null && adapter.attributeExists(roleProperty)) {
                Attributes atrs = adapter.getAttributes();

                if (atrs.get(roleProperty).contains(queryRoles)) {
                    rolesReturn.add(roleLdap.getRoleLibreplan());
                }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.