Searched defs:relativeBaseDN (Results 1 - 12 of 12) sorted by relevance

/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DDN.java382 * @param relativeBaseDN The relative base DN to concatenate onto
388 public DN concat(DN relativeBaseDN) argument
392 relativeBaseDN.rdnComponents.length];
394 System.arraycopy(relativeBaseDN.rdnComponents, 0, newComponents,
395 0, relativeBaseDN.rdnComponents.length);
397 relativeBaseDN.rdnComponents.length,
H A DSubtreeSpecification.java1018 DN relativeBaseDN = null;
1068 if (relativeBaseDN != null)
1073 relativeBaseDN = DN.decode(parser.nextStringValue());
1153 return new SubtreeSpecification(rootDN, relativeBaseDN,
1291 private final DN relativeBaseDN; field in class:SubtreeSpecification
1303 * @param relativeBaseDN
1323 final DN relativeBaseDN, final int minimumDepth,
1327 this.baseDN = relativeBaseDN == null ? rootDN : rootDN
1328 .concat(relativeBaseDN);
1365 this.relativeBaseDN
1322 SubtreeSpecification(final DN rootDN, final DN relativeBaseDN, final int minimumDepth, final int maximumDepth, final Iterable<DN> chopBefore, final Iterable<DN> chopAfter, final Refinement refinements) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DDN.java379 * @param relativeBaseDN The relative base DN to concatenate onto
385 public DN concat(DN relativeBaseDN) argument
389 relativeBaseDN.rdnComponents.length];
391 System.arraycopy(relativeBaseDN.rdnComponents, 0, newComponents,
392 0, relativeBaseDN.rdnComponents.length);
394 relativeBaseDN.rdnComponents.length,
H A DSubtreeSpecification.java1017 DN relativeBaseDN = null;
1067 if (relativeBaseDN != null)
1072 relativeBaseDN = DN.decode(parser.nextStringValue());
1152 return new SubtreeSpecification(rootDN, relativeBaseDN,
1290 private final DN relativeBaseDN; field in class:SubtreeSpecification
1302 * @param relativeBaseDN
1322 final DN relativeBaseDN, final int minimumDepth,
1326 this.baseDN = relativeBaseDN == null ? rootDN : rootDN
1327 .concat(relativeBaseDN);
1364 this.relativeBaseDN
1321 SubtreeSpecification(final DN rootDN, final DN relativeBaseDN, final int minimumDepth, final int maximumDepth, final Iterable<DN> chopBefore, final Iterable<DN> chopAfter, final Refinement refinements) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DDN.java382 * @param relativeBaseDN The relative base DN to concatenate onto
388 public DN concat(DN relativeBaseDN) argument
392 relativeBaseDN.rdnComponents.length];
394 System.arraycopy(relativeBaseDN.rdnComponents, 0, newComponents,
395 0, relativeBaseDN.rdnComponents.length);
397 relativeBaseDN.rdnComponents.length,
H A DSubtreeSpecification.java1018 DN relativeBaseDN = null;
1068 if (relativeBaseDN != null)
1073 relativeBaseDN = DN.decode(parser.nextStringValue());
1153 return new SubtreeSpecification(rootDN, relativeBaseDN,
1291 private final DN relativeBaseDN; field in class:SubtreeSpecification
1303 * @param relativeBaseDN
1323 final DN relativeBaseDN, final int minimumDepth,
1327 this.baseDN = relativeBaseDN == null ? rootDN : rootDN
1328 .concat(relativeBaseDN);
1365 this.relativeBaseDN
1322 SubtreeSpecification(final DN rootDN, final DN relativeBaseDN, final int minimumDepth, final int maximumDepth, final Iterable<DN> chopBefore, final Iterable<DN> chopAfter, final Refinement refinements) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DDN.java382 * @param relativeBaseDN The relative base DN to concatenate onto
388 public DN concat(DN relativeBaseDN) argument
392 relativeBaseDN.rdnComponents.length];
394 System.arraycopy(relativeBaseDN.rdnComponents, 0, newComponents,
395 0, relativeBaseDN.rdnComponents.length);
397 relativeBaseDN.rdnComponents.length,
H A DSubtreeSpecification.java1018 DN relativeBaseDN = null;
1068 if (relativeBaseDN != null)
1073 relativeBaseDN = DN.decode(parser.nextStringValue());
1153 return new SubtreeSpecification(rootDN, relativeBaseDN,
1291 private final DN relativeBaseDN; field in class:SubtreeSpecification
1303 * @param relativeBaseDN
1323 final DN relativeBaseDN, final int minimumDepth,
1327 this.baseDN = relativeBaseDN == null ? rootDN : rootDN
1328 .concat(relativeBaseDN);
1365 this.relativeBaseDN
1322 SubtreeSpecification(final DN rootDN, final DN relativeBaseDN, final int minimumDepth, final int maximumDepth, final Iterable<DN> chopBefore, final Iterable<DN> chopAfter, final Refinement refinements) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DDN.java379 * @param relativeBaseDN The relative base DN to concatenate onto
385 public DN concat(DN relativeBaseDN) argument
389 relativeBaseDN.rdnComponents.length];
391 System.arraycopy(relativeBaseDN.rdnComponents, 0, newComponents,
392 0, relativeBaseDN.rdnComponents.length);
394 relativeBaseDN.rdnComponents.length,
H A DSubtreeSpecification.java1017 DN relativeBaseDN = null;
1067 if (relativeBaseDN != null)
1072 relativeBaseDN = DN.decode(parser.nextStringValue());
1152 return new SubtreeSpecification(rootDN, relativeBaseDN,
1290 private final DN relativeBaseDN; field in class:SubtreeSpecification
1302 * @param relativeBaseDN
1322 final DN relativeBaseDN, final int minimumDepth,
1326 this.baseDN = relativeBaseDN == null ? rootDN : rootDN
1327 .concat(relativeBaseDN);
1364 this.relativeBaseDN
1321 SubtreeSpecification(final DN rootDN, final DN relativeBaseDN, final int minimumDepth, final int maximumDepth, final Iterable<DN> chopBefore, final Iterable<DN> chopAfter, final Refinement refinements) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DDN.java407 * @param relativeBaseDN The relative base DN to concatenate onto
413 public DN child(DN relativeBaseDN) argument
417 relativeBaseDN.rdnComponents.length];
419 System.arraycopy(relativeBaseDN.rdnComponents, 0, newComponents,
420 0, relativeBaseDN.rdnComponents.length);
422 relativeBaseDN.rdnComponents.length,
H A DSubtreeSpecification.java931 DN relativeBaseDN = null;
980 if (relativeBaseDN != null)
985 relativeBaseDN = DN.valueOf(parser.nextStringValue());
1061 return new SubtreeSpecification(rootDN, relativeBaseDN,
1195 private final DN relativeBaseDN; field in class:SubtreeSpecification
1207 * @param relativeBaseDN
1227 final DN relativeBaseDN, final int minimumDepth,
1231 this.baseDN = relativeBaseDN == null ? rootDN : rootDN
1232 .child(relativeBaseDN);
1269 this.relativeBaseDN
1226 SubtreeSpecification(final DN rootDN, final DN relativeBaseDN, final int minimumDepth, final int maximumDepth, final Iterable<DN> chopBefore, final Iterable<DN> chopAfter, final Refinement refinements) argument
[all...]

Completed in 614 milliseconds