com.unboundid.ldap.sdk.DN.isAncestorOf()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(107)

本文整理了Java中com.unboundid.ldap.sdk.DN.isAncestorOf()方法的一些代码示例,展示了DN.isAncestorOf()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DN.isAncestorOf()方法的具体详情如下:
包路径:com.unboundid.ldap.sdk.DN
类名称:DN
方法名:isAncestorOf

DN.isAncestorOf介绍

[英]Indicates whether this DN is an ancestor of the provided DN. It will be considered an ancestor of the provided DN if the array of RDN components for the provided DN ends with the elements that comprise the array of RDN components for this DN (i.e., if the provided DN is subordinate to, or optionally equal to, this DN). The null DN will be considered an ancestor for all other DNs (with the exception of the null DN if allowEqualsis false).
[中]指示此DN是否为所提供DN的祖先。如果所提供DN的RDN组件数组以构成该DN的RDN组件数组的元素结尾(即,如果所提供的DN从属于或可选地等于该DN),则该DN将被视为所提供DN的祖先。空DN将被视为所有其他DNs的祖先(如果allowEqualsis为false,则空DN除外)。

代码示例

代码示例来源:origin: com.unboundid/unboundid-ldapsdk-minimal-edition

  1. /**
  2. * Indicates whether this DN is an ancestor of the DN with the provided string
  3. * representation. It will be considered an ancestor of the provided DN if
  4. * the array of RDN components for the provided DN ends with the elements that
  5. * comprise the array of RDN components for this DN (i.e., if the provided DN
  6. * is subordinate to, or optionally equal to, this DN). The null DN will be
  7. * considered an ancestor for all other DNs (with the exception of the null DN
  8. * if {@code allowEquals} is {@code false}).
  9. *
  10. * @param s The string representation of the DN for which to make
  11. * the determination.
  12. * @param allowEquals Indicates whether a DN should be considered an
  13. * ancestor of itself.
  14. *
  15. * @return {@code true} if this DN may be considered an ancestor of the
  16. * provided DN, or {@code false} if not.
  17. *
  18. * @throws LDAPException If the provided string cannot be parsed as a DN.
  19. */
  20. public boolean isAncestorOf(final String s, final boolean allowEquals)
  21. throws LDAPException
  22. {
  23. return isAncestorOf(new DN(s), allowEquals);
  24. }

代码示例来源:origin: com.unboundid/unboundid-ldapsdk-commercial-edition

  1. /**
  2. * Indicates whether this DN is an ancestor of the DN with the provided string
  3. * representation. It will be considered an ancestor of the provided DN if
  4. * the array of RDN components for the provided DN ends with the elements that
  5. * comprise the array of RDN components for this DN (i.e., if the provided DN
  6. * is subordinate to, or optionally equal to, this DN). The null DN will be
  7. * considered an ancestor for all other DNs (with the exception of the null DN
  8. * if {@code allowEquals} is {@code false}).
  9. *
  10. * @param s The string representation of the DN for which to make
  11. * the determination.
  12. * @param allowEquals Indicates whether a DN should be considered an
  13. * ancestor of itself.
  14. *
  15. * @return {@code true} if this DN may be considered an ancestor of the
  16. * provided DN, or {@code false} if not.
  17. *
  18. * @throws LDAPException If the provided string cannot be parsed as a DN.
  19. */
  20. public boolean isAncestorOf(final String s, final boolean allowEquals)
  21. throws LDAPException
  22. {
  23. return isAncestorOf(new DN(s), allowEquals);
  24. }

代码示例来源:origin: com.unboundid/unboundid-ldapsdk-minimal-edition

  1. /**
  2. * Indicates whether the DN represented by the first string is an ancestor of
  3. * the DN represented by the second string. The first DN will be considered
  4. * an ancestor of the second DN if the array of RDN components for the first
  5. * DN ends with the elements that comprise the array of RDN components for the
  6. * second DN (i.e., if the first DN is subordinate to, or optionally equal to,
  7. * the second DN). The null DN will be considered an ancestor for all other
  8. * DNs (with the exception of the null DN if {@code allowEquals} is
  9. * {@code false}).
  10. *
  11. * @param s1 The string representation of the first DN for which to
  12. * make the determination.
  13. * @param s2 The string representation of the second DN for which
  14. * to make the determination.
  15. * @param allowEquals Indicates whether a DN should be considered an
  16. * ancestor of itself.
  17. *
  18. * @return {@code true} if the first DN may be considered an ancestor of the
  19. * second DN, or {@code false} if not.
  20. *
  21. * @throws LDAPException If either of the provided strings cannot be parsed
  22. * as a DN.
  23. */
  24. public static boolean isAncestorOf(final String s1, final String s2,
  25. final boolean allowEquals)
  26. throws LDAPException
  27. {
  28. return new DN(s1).isAncestorOf(new DN(s2), allowEquals);
  29. }

代码示例来源:origin: com.unboundid/unboundid-ldapsdk-commercial-edition

  1. /**
  2. * Indicates whether the DN represented by the first string is an ancestor of
  3. * the DN represented by the second string. The first DN will be considered
  4. * an ancestor of the second DN if the array of RDN components for the first
  5. * DN ends with the elements that comprise the array of RDN components for the
  6. * second DN (i.e., if the first DN is subordinate to, or optionally equal to,
  7. * the second DN). The null DN will be considered an ancestor for all other
  8. * DNs (with the exception of the null DN if {@code allowEquals} is
  9. * {@code false}).
  10. *
  11. * @param s1 The string representation of the first DN for which to
  12. * make the determination.
  13. * @param s2 The string representation of the second DN for which
  14. * to make the determination.
  15. * @param allowEquals Indicates whether a DN should be considered an
  16. * ancestor of itself.
  17. *
  18. * @return {@code true} if the first DN may be considered an ancestor of the
  19. * second DN, or {@code false} if not.
  20. *
  21. * @throws LDAPException If either of the provided strings cannot be parsed
  22. * as a DN.
  23. */
  24. public static boolean isAncestorOf(final String s1, final String s2,
  25. final boolean allowEquals)
  26. throws LDAPException
  27. {
  28. return new DN(s1).isAncestorOf(new DN(s2), allowEquals);
  29. }

代码示例来源:origin: com.unboundid/unboundid-ldapsdk-commercial-edition

  1. parsedDN2 = e2.getParsedDN();
  2. if (parsedDN1.isAncestorOf(parsedDN2, false))
  3. else if (parsedDN2.isAncestorOf(parsedDN1, false))

代码示例来源:origin: com.unboundid/unboundid-ldapsdk-commercial-edition

  1. break;
  2. else if (restrictionDN.isAncestorOf(parsedBaseDN, false))
  3. break;
  4. else if (restrictionDN.isAncestorOf(parsedBaseDN, false))

相关文章