Uses of Class
org.apache.directory.shared.ldap.name.LdapDN

Packages that use LdapDN
org.apache.directory.shared.ldap.aci ACI (Access Control Information) data model adopted from X.501 specification. 
org.apache.directory.shared.ldap.codec   
org.apache.directory.shared.ldap.codec.add   
org.apache.directory.shared.ldap.codec.bind   
org.apache.directory.shared.ldap.codec.compare   
org.apache.directory.shared.ldap.codec.del   
org.apache.directory.shared.ldap.codec.modify   
org.apache.directory.shared.ldap.codec.modifyDn   
org.apache.directory.shared.ldap.codec.search   
org.apache.directory.shared.ldap.codec.search.controls   
org.apache.directory.shared.ldap.entry   
org.apache.directory.shared.ldap.entry.client   
org.apache.directory.shared.ldap.ldif   
org.apache.directory.shared.ldap.message   
org.apache.directory.shared.ldap.name   
org.apache.directory.shared.ldap.subtree   
org.apache.directory.shared.ldap.trigger   
org.apache.directory.shared.ldap.util   
 

Uses of LdapDN in org.apache.directory.shared.ldap.aci
 

Constructor parameters in org.apache.directory.shared.ldap.aci with type arguments of type LdapDN
UserClass.Name(java.util.Set<LdapDN> usernames)
          Creates a new instance.
UserClass.UserGroup(java.util.Set<LdapDN> groupNames)
          Creates a new instance.
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec
 

Methods in org.apache.directory.shared.ldap.codec with parameters of type LdapDN
 void LdapResult.setMatchedDN(LdapDN matchedDN)
          Set the Matched DN
 

Constructors in org.apache.directory.shared.ldap.codec with parameters of type LdapDN
ResponseCarryingException(java.lang.String message, ResultResponse response, ResultCodeEnum code, LdapDN matchedDn, java.lang.Throwable cause)
          Creates a DecoderException
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.add
 

Methods in org.apache.directory.shared.ldap.codec.add that return LdapDN
 LdapDN AddRequest.getEntryDn()
          Get the added DN
 

Methods in org.apache.directory.shared.ldap.codec.add with parameters of type LdapDN
 void AddRequest.setEntryDn(LdapDN entryDn)
          Set the added DN.
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.bind
 

Methods in org.apache.directory.shared.ldap.codec.bind that return LdapDN
 LdapDN BindRequest.getName()
          Get the user name
 

Methods in org.apache.directory.shared.ldap.codec.bind with parameters of type LdapDN
 void BindRequest.setName(LdapDN name)
          Set the user name
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.compare
 

Methods in org.apache.directory.shared.ldap.codec.compare that return LdapDN
 LdapDN CompareRequest.getEntry()
          Get the entry to be compared
 

Methods in org.apache.directory.shared.ldap.codec.compare with parameters of type LdapDN
 void CompareRequest.setEntry(LdapDN entry)
          Set the entry to be compared
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.del
 

Methods in org.apache.directory.shared.ldap.codec.del that return LdapDN
 LdapDN DelRequest.getEntry()
          Get the entry to be deleted
 

Methods in org.apache.directory.shared.ldap.codec.del with parameters of type LdapDN
 void DelRequest.setEntry(LdapDN entry)
          Set the entry to be deleted
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.modify
 

Methods in org.apache.directory.shared.ldap.codec.modify that return LdapDN
 LdapDN ModifyRequest.getObject()
          Get the modification's DN
 

Methods in org.apache.directory.shared.ldap.codec.modify with parameters of type LdapDN
 void ModifyRequest.setObject(LdapDN object)
          Set the modification DN.
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.modifyDn
 

Methods in org.apache.directory.shared.ldap.codec.modifyDn that return LdapDN
 LdapDN ModifyDNRequest.getEntry()
          Get the modification's DN
 LdapDN ModifyDNRequest.getNewSuperior()
          Get the newSuperior
 

Methods in org.apache.directory.shared.ldap.codec.modifyDn with parameters of type LdapDN
 void ModifyDNRequest.setEntry(LdapDN entry)
          Set the modification DN.
 void ModifyDNRequest.setNewSuperior(LdapDN newSuperior)
          Set the new superior
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.search
 

Methods in org.apache.directory.shared.ldap.codec.search that return LdapDN
 LdapDN SearchRequest.getBaseObject()
          Get the base object
 LdapDN SearchResultEntry.getObjectName()
          Get the entry DN
 

Methods in org.apache.directory.shared.ldap.codec.search with parameters of type LdapDN
 void SearchRequest.setBaseObject(LdapDN baseObject)
          Set the base object
 void SearchResultEntry.setObjectName(LdapDN objectName)
          Set the entry DN.
 

Uses of LdapDN in org.apache.directory.shared.ldap.codec.search.controls
 

Methods in org.apache.directory.shared.ldap.codec.search.controls that return LdapDN
 LdapDN EntryChangeControlCodec.getPreviousDn()
           
 

Methods in org.apache.directory.shared.ldap.codec.search.controls with parameters of type LdapDN
 void EntryChangeControlCodec.setPreviousDn(LdapDN previousDn)
           
 

Uses of LdapDN in org.apache.directory.shared.ldap.entry
 

Fields in org.apache.directory.shared.ldap.entry declared as LdapDN
protected  LdapDN AbstractEntry.dn
          The DN for this entry
 

Methods in org.apache.directory.shared.ldap.entry that return LdapDN
 LdapDN AbstractEntry.getDn()
          Get this entry's DN.
 LdapDN Entry.getDn()
          Get this entry's DN.
 

Methods in org.apache.directory.shared.ldap.entry with parameters of type LdapDN
 void AbstractEntry.setDn(LdapDN dn)
          Set this entry's DN.
 void Entry.setDn(LdapDN dn)
          Set this entry's DN.
 

Uses of LdapDN in org.apache.directory.shared.ldap.entry.client
 

Constructors in org.apache.directory.shared.ldap.entry.client with parameters of type LdapDN
DefaultClientEntry(LdapDN dn)
          Creates a new instance of DefaultServerEntry, with a DN.
DefaultClientEntry(LdapDN dn, EntryAttribute... attributes)
           Creates a new instance of DefaultClientEntry, with a DN and a list of EntryAttributes.
DefaultClientEntry(LdapDN dn, java.lang.String... upIds)
          Creates a new instance of DefaultServerEntry, with a DN and a list of IDs.
 

Uses of LdapDN in org.apache.directory.shared.ldap.ldif
 

Methods in org.apache.directory.shared.ldap.ldif that return LdapDN
 LdapDN LdifEntry.getDn()
           
 

Methods in org.apache.directory.shared.ldap.ldif with parameters of type LdapDN
static java.lang.String LdifUtils.convertToLdif(javax.naming.directory.Attributes attrs, LdapDN dn)
          Convert an Attributes as LDIF
static java.lang.String LdifUtils.convertToLdif(javax.naming.directory.Attributes attrs, LdapDN dn, int length)
          Convert an Attributes as LDIF
static LdifEntry LdifUtils.reverseAdd(LdapDN dn)
          Compute a reverse LDIF of an AddRequest.
static LdifEntry LdifUtils.reverseDel(LdapDN dn, Entry deletedEntry)
          Compute a reverse LDIF of a DeleteRequest.
static LdifEntry LdifUtils.reverseModify(LdapDN dn, java.util.List<Modification> forwardModifications, Entry modifiedEntry)
          Compute the reversed LDIF for a modify request.
static LdifEntry LdifUtils.reverseModifyDn(LdapDN newSuperiorDn, LdapDN modifiedDn)
          Compute a reverse LDIF for a forward change which if in LDIF format would represent a moddn operation.
static java.util.List<LdifEntry> LdifUtils.reverseModifyRdn(javax.naming.directory.Attributes t0, LdapDN t1_parentDn, LdapDN t0_dn, Rdn t1_rdn)
          Compute a reverse LDIF for a forward change which if in LDIF format would represent a modrdn operation.
static java.util.List<LdifEntry> LdifUtils.reverseRename(javax.naming.directory.Attributes t0, LdapDN t0_dn, Rdn t1_rdn)
          Revert a DN to it's previous version by removing the first RDN and adding the given RDN
 void LdifEntry.setDn(LdapDN dn)
          Set the Distinguished Name
 

Uses of LdapDN in org.apache.directory.shared.ldap.message
 

Methods in org.apache.directory.shared.ldap.message that return LdapDN
 LdapDN SearchRequest.getBase()
          Gets the search base as a distinguished name.
 LdapDN SearchRequestImpl.getBase()
          Gets the search base as a distinguished name.
 LdapDN AddRequest.getEntryDn()
          Gets the distinguished name of the entry to add.
 LdapDN AddRequestImpl.getEntryDn()
          Gets the distinguished name of the entry to add.
 LdapDN LdapResult.getMatchedDn()
          Gets the lowest entry in the directory that was matched.
 LdapDN LdapResultImpl.getMatchedDn()
          Gets the lowest entry in the directory that was matched.
 LdapDN BindRequest.getName()
          Gets the distinguished name of the subject in this authentication request.
 LdapDN DeleteRequest.getName()
          Gets the distinguished name of the leaf entry to be deleted by this request.
 LdapDN ModifyDnRequest.getName()
          Gets the entry's distinguished name representing the entry PDU field.
 LdapDN ModifyRequest.getName()
          Gets the distinguished name of the entry to be modified by this request.
 LdapDN CompareRequest.getName()
          Gets the distinguished name of the entry to be compared using the attribute value assertion.
 LdapDN BindRequestImpl.getName()
          Gets the distinguished name of the subject in this authentication request.
 LdapDN ModifyDnRequestImpl.getName()
          Gets the entry's distinguished name representing the entry PDU field.
 LdapDN ModifyRequestImpl.getName()
          Gets the distinguished name of the entry to be modified by this request.
 LdapDN CompareRequestImpl.getName()
          Gets the distinguished name of the entry to be compared using the attribute value assertion.
 LdapDN DeleteRequestImpl.getName()
          Gets the distinguished name of the leaf entry to be deleted by this request.
 LdapDN ModifyDnRequest.getNewSuperior()
          Gets the optional distinguished name of the new superior entry where the candidate entry is to be moved.
 LdapDN ModifyDnRequestImpl.getNewSuperior()
          Gets the optional distinguished name of the new superior entry where the candidate entry is to be moved.
 LdapDN SearchResponseEntry.getObjectName()
          Gets the distinguished name of the entry object returned.
 LdapDN SearchResponseEntryImpl.getObjectName()
          Gets the distinguished name of the entry object returned.
 LdapDN EntryChangeControl.getPreviousDn()
           
 

Methods in org.apache.directory.shared.ldap.message with parameters of type LdapDN
 void SearchRequest.setBase(LdapDN baseDn)
          Sets the search base as a distinguished name.
 void SearchRequestImpl.setBase(LdapDN base)
          Sets the search base as a distinguished name.
 void AddRequest.setEntryDn(LdapDN entry)
          Sets the distinguished name of the entry to add.
 void AddRequestImpl.setEntryDn(LdapDN dn)
          Sets the distinguished name of the entry to add.
 void LdapResult.setMatchedDn(LdapDN dn)
          Sets the lowest entry in the directory that was matched.
 void LdapResultImpl.setMatchedDn(LdapDN matchedDn)
          Sets the lowest entry in the directory that was matched.
 void BindRequest.setName(LdapDN name)
          Sets the distinguished name of the subject in this authentication request.
 void DeleteRequest.setName(LdapDN name)
          Sets the distinguished name of the leaf entry to be deleted by this request.
 void ModifyDnRequest.setName(LdapDN name)
          Sets the entry's distinguished name representing the entry PDU field.
 void ModifyRequest.setName(LdapDN name)
          Sets the distinguished name of the entry to be modified by this request.
 void CompareRequest.setName(LdapDN name)
          Sets the distinguished name of the entry to be compared using the attribute value assertion.
 void BindRequestImpl.setName(LdapDN name)
          Sets the distinguished name of the subject in this authentication request.
 void ModifyDnRequestImpl.setName(LdapDN name)
          Sets the entry's distinguished name representing the entry PDU field.
 void ModifyRequestImpl.setName(LdapDN name)
          Sets the distinguished name of the entry to be modified by this request.
 void CompareRequestImpl.setName(LdapDN name)
          Sets the distinguished name of the entry to be compared using the attribute value assertion.
 void DeleteRequestImpl.setName(LdapDN name)
          Sets the distinguished name of the leaf entry to be deleted by this request.
 void ModifyDnRequest.setNewSuperior(LdapDN newSuperior)
          Sets the optional distinguished name of the new superior entry where the candidate entry is to be moved.
 void ModifyDnRequestImpl.setNewSuperior(LdapDN newSuperior)
          Sets the optional distinguished name of the new superior entry where the candidate entry is to be moved.
 void SearchResponseEntry.setObjectName(LdapDN dn)
          Sets the distinguished name of the entry object returned.
 void SearchResponseEntryImpl.setObjectName(LdapDN objectName)
          Sets the distinguished name of the entry object returned.
 void EntryChangeControl.setPreviousDn(LdapDN previousDn)
           
 

Uses of LdapDN in org.apache.directory.shared.ldap.name
 

Fields in org.apache.directory.shared.ldap.name declared as LdapDN
static LdapDN LdapDN.EMPTY_LDAPDN
          A null LdapDN
 

Methods in org.apache.directory.shared.ldap.name that return LdapDN
static LdapDN LdapDNSerializer.deserialize(java.io.ObjectInput in)
          Deserialize a DN We read back the data to create a new LdapDN.
static LdapDN LdapDN.normalize(LdapDN dn, java.util.Map<java.lang.String,OidNormalizer> oidsMap)
          Change the internal DN, using the OID instead of the first name or other aliases.
 LdapDN LdapDN.normalize(java.util.Map<java.lang.String,OidNormalizer> oidsMap)
          Change the internal DN, using the OID instead of the first name or other aliases.
 

Methods in org.apache.directory.shared.ldap.name with parameters of type LdapDN
static byte[] LdapDN.getBytes(LdapDN dn)
          Get an UTF-8 representation of the normalized form of the DN
static LdapDN LdapDN.normalize(LdapDN dn, java.util.Map<java.lang.String,OidNormalizer> oidsMap)
          Change the internal DN, using the OID instead of the first name or other aliases.
static void LdapDNSerializer.serialize(LdapDN dn, java.io.ObjectOutput out)
          Serialize a DN We have to store a DN data efficiently.
 

Uses of LdapDN in org.apache.directory.shared.ldap.subtree
 

Methods in org.apache.directory.shared.ldap.subtree that return LdapDN
 LdapDN SubtreeSpecification.getBase()
          Gets an RDN relative to the administrative context where the subtree scope begins.
 LdapDN BaseSubtreeSpecification.getBase()
           
 

Methods in org.apache.directory.shared.ldap.subtree that return types with arguments of type LdapDN
 java.util.Set<LdapDN> SubtreeSpecification.getChopAfterExclusions()
          A set of RDNs relative to the base entry representing chopAfter specificExclusions from the subtree.
 java.util.Set<LdapDN> BaseSubtreeSpecification.getChopAfterExclusions()
           
 java.util.Set<LdapDN> SubtreeSpecification.getChopBeforeExclusions()
          A set of RDNs relative to the base entry representing chopBefore specificExclusions from the subtree.
 java.util.Set<LdapDN> BaseSubtreeSpecification.getChopBeforeExclusions()
           
 

Methods in org.apache.directory.shared.ldap.subtree with parameters of type LdapDN
 void SubtreeSpecificationModifier.setBase(LdapDN base)
          Sets the subtree base relative to the administration point.
 

Method parameters in org.apache.directory.shared.ldap.subtree with type arguments of type LdapDN
 void SubtreeSpecificationModifier.setChopAfterExclusions(java.util.Set<LdapDN> chopAfter)
          Sets the set of subordinates entries whose subordinates are to be excluded.
 void SubtreeSpecificationModifier.setChopBeforeExclusions(java.util.Set<LdapDN> chopBefore)
          Sets the set of subordinates entries and their subordinates to exclude.
 

Constructors in org.apache.directory.shared.ldap.subtree with parameters of type LdapDN
BaseSubtreeSpecification(LdapDN base)
          Creates a simple subtree whose administrative point above the base and all subordinates underneath the base (excluding those that are part of inner areas) are part of the the subtree.
BaseSubtreeSpecification(LdapDN base, int minBaseDistance, int maxBaseDistance, java.util.Set<LdapDN> chopAfter, java.util.Set<LdapDN> chopBefore)
          Creates a subtree without a refinement filter where all other aspects can be varied.
BaseSubtreeSpecification(LdapDN base, int minBaseDistance, int maxBaseDistance, java.util.Set<LdapDN> chopAfter, java.util.Set<LdapDN> chopBefore, ExprNode refinement)
          Creates a subtree which may be a refinement filter where all aspects of the specification can be set.
 

Constructor parameters in org.apache.directory.shared.ldap.subtree with type arguments of type LdapDN
BaseSubtreeSpecification(LdapDN base, int minBaseDistance, int maxBaseDistance, java.util.Set<LdapDN> chopAfter, java.util.Set<LdapDN> chopBefore)
          Creates a subtree without a refinement filter where all other aspects can be varied.
BaseSubtreeSpecification(LdapDN base, int minBaseDistance, int maxBaseDistance, java.util.Set<LdapDN> chopAfter, java.util.Set<LdapDN> chopBefore)
          Creates a subtree without a refinement filter where all other aspects can be varied.
BaseSubtreeSpecification(LdapDN base, int minBaseDistance, int maxBaseDistance, java.util.Set<LdapDN> chopAfter, java.util.Set<LdapDN> chopBefore, ExprNode refinement)
          Creates a subtree which may be a refinement filter where all aspects of the specification can be set.
BaseSubtreeSpecification(LdapDN base, int minBaseDistance, int maxBaseDistance, java.util.Set<LdapDN> chopAfter, java.util.Set<LdapDN> chopBefore, ExprNode refinement)
          Creates a subtree which may be a refinement filter where all aspects of the specification can be set.
 

Uses of LdapDN in org.apache.directory.shared.ldap.trigger
 

Methods in org.apache.directory.shared.ldap.trigger that return LdapDN
 LdapDN StoredProcedureParameter.Generic_LDAP_CONTEXT.getCtxName()
           
 

Methods in org.apache.directory.shared.ldap.trigger with parameters of type LdapDN
static StoredProcedureParameter StoredProcedureParameter.Generic_LDAP_CONTEXT.instance(LdapDN ctxName)
           
 

Uses of LdapDN in org.apache.directory.shared.ldap.util
 

Methods in org.apache.directory.shared.ldap.util that return LdapDN
 LdapDN LdapURL.getDn()
           
 

Methods in org.apache.directory.shared.ldap.util with parameters of type LdapDN
 void LdapURL.setDn(LdapDN dn)
          Sets the dn.
static Entry AttributeUtils.toClientEntry(javax.naming.directory.Attributes attributes, LdapDN dn)
          Convert a BasicAttributes or a AttributesImpl to a ServerEntry
 



Copyright © 2003-2011 Apache Software Foundation. All Rights Reserved.