Uses of Interface
edu.vt.middleware.ldap.bean.LdapResult
-
Packages that use LdapResult Package Description edu.vt.middleware.ldap.bean edu.vt.middleware.ldap.dsml edu.vt.middleware.ldap.ldif -
-
Uses of LdapResult in edu.vt.middleware.ldap.bean
Classes in edu.vt.middleware.ldap.bean that implement LdapResult Modifier and Type Class Description class
AbstractLdapResult<T extends java.util.Map<java.lang.String,LdapEntry>>
AbstractLdapResult
provides a base implementation ofLdapResult
where the underlying entries are backed by aMap
.protected class
OrderedLdapBeanFactory.OrderedLdapResult
OrderedLdapResult
represents a collection of ldap entries that are ordered by insertion.protected class
SortedLdapBeanFactory.SortedLdapResult
SortedLdapResult
represents a collection of ldap entries that are sorted by their DN.protected class
UnorderedLdapBeanFactory.UnorderedLdapResult
UnorderedLdapResult
represents a collection of ldap entries that are unordered.Methods in edu.vt.middleware.ldap.bean that return LdapResult Modifier and Type Method Description LdapResult
LdapBeanFactory. newLdapResult()
Create a new instance ofLdapResult
.LdapResult
OrderedLdapBeanFactory. newLdapResult()
Create a new instance ofLdapResult
.LdapResult
SortedLdapBeanFactory. newLdapResult()
Create a new instance ofLdapResult
.LdapResult
UnorderedLdapBeanFactory. newLdapResult()
Create a new instance ofLdapResult
. -
Uses of LdapResult in edu.vt.middleware.ldap.dsml
Methods in edu.vt.middleware.ldap.dsml that return LdapResult Modifier and Type Method Description protected abstract LdapResult
AbstractDsml. createLdapResult(org.dom4j.Document doc)
This will take a DSMLDocument
and convert it to an Iterator of LDAP search results.LdapResult
Dsmlv1. createLdapResult(org.dom4j.Document doc)
This will take a DSMLDocument
and convert it to anLdapResult
.LdapResult
Dsmlv2. createLdapResult(org.dom4j.Document doc)
This will take a DSMLDocument
and convert it to aLdapResult
.LdapResult
DsmlResultConverter. fromDsmlv1(java.lang.String dsml)
This reads any entries in the supplied DSML into thisDsmlResult
.LdapResult
DsmlResultConverter. fromDsmlv2(java.lang.String dsml)
This reads any entries in the supplied DSML into thisDsmlResult
.LdapResult
AbstractDsml. importDsmlToLdapResult(java.io.Reader reader)
This will take a Reader containing a DSMLDocument
and convert it to anLdapResult
.Methods in edu.vt.middleware.ldap.dsml with parameters of type LdapResult Modifier and Type Method Description abstract org.dom4j.Document
AbstractDsml. createDsml(LdapResult result)
This will take the results of a prior LDAP query and convert it to a DSMLDocument
.org.dom4j.Document
Dsmlv1. createDsml(LdapResult result)
This will take the results of a prior LDAP query and convert it to a DSMLDocument
.org.dom4j.Document
Dsmlv2. createDsml(LdapResult result)
This will take the results of a prior LDAP query and convert it to a DSMLDocument
.void
AbstractDsml. outputDsml(LdapResult result, java.io.Writer writer)
This will write the supplied LDAP result to the supplied writer in the form of DSML.java.lang.String
DsmlResultConverter. toDsmlv1(LdapResult result)
This returns thisDsmlResult
as version 1 DSML.java.lang.String
DsmlResultConverter. toDsmlv2(LdapResult result)
This returns thisDsmlResult
as version 2 DSML. -
Uses of LdapResult in edu.vt.middleware.ldap.ldif
Methods in edu.vt.middleware.ldap.ldif that return LdapResult Modifier and Type Method Description LdapResult
LdifResultConverter. fromLdif(java.lang.String ldif)
This reads any entries in the supplied LDIF into thisLdifResult
.LdapResult
Ldif. importLdifToLdapResult(java.io.Reader reader)
This will take a Reader containing an LDIF and convert it to anLdapResult
.Methods in edu.vt.middleware.ldap.ldif with parameters of type LdapResult Modifier and Type Method Description java.lang.String
Ldif. createLdif(LdapResult result)
This will take the results of a prior LDAP query and convert it to LDIF.void
Ldif. outputLdif(LdapResult result, java.io.Writer writer)
This will write the supplied LDAP search results to the supplied writer in LDIF form.java.lang.String
LdifResultConverter. toLdif(LdapResult result)
This returns thisLdifResult
as LDIF.
-