Class LdapSearchResult
- java.lang.Object
 - 
- io.micronaut.configuration.security.ldap.context.LdapSearchResult
 
 
- 
public class LdapSearchResult extends java.lang.ObjectContains the data returned from an LDAP search.- Since:
 - 1.0
 - Author:
 - James Kleeh
 
 
- 
- 
Constructor Summary
Constructors Constructor Description LdapSearchResult(javax.naming.directory.Attributes attributes, java.lang.String dn) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.micronaut.core.convert.value.ConvertibleValues<java.lang.Object>getAttributes()java.lang.StringgetDn()voidsetAttributes(javax.naming.directory.Attributes attributes)voidsetDn(java.lang.String dn) 
 - 
 
- 
- 
Method Detail
- 
getAttributes
public io.micronaut.core.convert.value.ConvertibleValues<java.lang.Object> getAttributes()
- Returns:
 - A 
ConvertibleValuesrepresentation of the LDAP attributes 
 
- 
setAttributes
public void setAttributes(javax.naming.directory.Attributes attributes)
- Parameters:
 attributes- The LDAP attributes
 
- 
getDn
public java.lang.String getDn()
- Returns:
 - The DN
 
 
- 
setDn
public void setDn(java.lang.String dn)
- Parameters:
 dn- The DN
 
 - 
 
 -