/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/ |
H A D | PatternRDN.java | 163 * @param rdn The RDN to be matched. 166 public boolean matchesRDN(RDN rdn) argument 176 if (rdn.getNumValues() != 1) 181 AttributeType thatType = rdn.getAttributeType(0); 193 rdn.getAttributeValue(0)); 201 if (numValues != rdn.getNumValues()) 212 for (int i = 0; i < rdn.getNumValues(); i++) 214 rdnMap.put(rdn.getAttributeType(i).getNameOrOID(), 215 rdn.getAttributeValue(i));
|
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/ |
H A D | PatternRDN.java | 164 * @param rdn The RDN to be matched. 167 public boolean matchesRDN(RDN rdn) argument 177 if (rdn.getNumValues() != 1) 182 AttributeType thatType = rdn.getAttributeType(0); 194 rdn.getAttributeValue(0)); 202 if (numValues != rdn.getNumValues()) 213 for (int i = 0; i < rdn.getNumValues(); i++) 215 rdnMap.put(rdn.getAttributeType(i).getNameOrOID(), 216 rdn.getAttributeValue(i));
|
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/ |
H A D | PatternRDN.java | 164 * @param rdn The RDN to be matched. 167 public boolean matchesRDN(RDN rdn) argument 177 if (rdn.getNumValues() != 1) 182 AttributeType thatType = rdn.getAttributeType(0); 194 rdn.getAttributeValue(0)); 202 if (numValues != rdn.getNumValues()) 213 for (int i = 0; i < rdn.getNumValues(); i++) 215 rdnMap.put(rdn.getAttributeType(i).getNameOrOID(), 216 rdn.getAttributeValue(i));
|
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/ |
H A D | PatternRDN.java | 163 * @param rdn The RDN to be matched. 166 public boolean matchesRDN(RDN rdn) argument 176 if (rdn.getNumValues() != 1) 181 AttributeType thatType = rdn.getAttributeType(0); 193 rdn.getAttributeValue(0)); 201 if (numValues != rdn.getNumValues()) 212 for (int i = 0; i < rdn.getNumValues(); i++) 214 rdnMap.put(rdn.getAttributeType(i).getNameOrOID(), 215 rdn.getAttributeValue(i));
|
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/ |
H A D | PatternRDN.java | 164 * @param rdn The RDN to be matched. 167 public boolean matchesRDN(RDN rdn) argument 177 if (rdn.getNumValues() != 1) 182 AttributeType thatType = rdn.getAttributeType(0); 194 rdn.getAttributeValue(0)); 202 if (numValues != rdn.getNumValues()) 213 for (int i = 0; i < rdn.getNumValues(); i++) 215 rdnMap.put(rdn.getAttributeType(i).getNameOrOID(), 216 rdn.getAttributeValue(i));
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/ |
H A D | PatternRDN.java | 154 * @param rdn The RDN to be matched. 157 public boolean matchesRDN(RDN rdn) argument 167 if (rdn.getNumValues() != 1) 172 AttributeType thatType = rdn.getAttributeType(0); 182 return matchValuePattern(valuePatterns.get(0), thatType, rdn.getAttributeValue(0)); 190 if (numValues != rdn.getNumValues()) 199 for (int i = 0; i < rdn.getNumValues(); i++) 201 rdnMap.put(rdn.getAttributeType(i).getNameOrOID(), 202 rdn.getAttributeValue(i));
|
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/ |
H A D | JebFormat.java | 344 private static void formatRDNKey(RDN rdn, StringBuilder buffer) argument 346 if (!rdn.isMultiValued()) 348 rdn.toNormalizedString(buffer); 354 for (int i=0; i < rdn.getNumValues(); i++) 357 rdn.getAVAString(i, b2);
|
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/ |
H A D | JebFormat.java | 345 private static void formatRDNKey(RDN rdn, StringBuilder buffer) argument 347 if (!rdn.isMultiValued()) 349 rdn.toNormalizedString(buffer); 355 for (int i=0; i < rdn.getNumValues(); i++) 358 rdn.getAVAString(i, b2);
|
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/ |
H A D | JebFormat.java | 345 private static void formatRDNKey(RDN rdn, StringBuilder buffer) argument 347 if (!rdn.isMultiValued()) 349 rdn.toNormalizedString(buffer); 355 for (int i=0; i < rdn.getNumValues(); i++) 358 rdn.getAVAString(i, b2);
|
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/ |
H A D | JebFormat.java | 344 private static void formatRDNKey(RDN rdn, StringBuilder buffer) argument 346 if (!rdn.isMultiValued()) 348 rdn.toNormalizedString(buffer); 354 for (int i=0; i < rdn.getNumValues(); i++) 357 rdn.getAVAString(i, b2);
|
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/ |
H A D | JebFormat.java | 345 private static void formatRDNKey(RDN rdn, StringBuilder buffer) argument 347 if (!rdn.isMultiValued()) 349 rdn.toNormalizedString(buffer); 355 for (int i=0; i < rdn.getNumValues(); i++) 358 rdn.getAVAString(i, b2);
|
/forgerock/opendj-b2.6/src/server/org/opends/server/types/ |
H A D | DN.java | 173 * @param rdn The RDN to use for the new DN. It must not be 178 public DN(RDN rdn, DN parentDN) argument 180 ensureNotNull(rdn, parentDN); 183 rdnComponents = new RDN[] { rdn }; 188 rdnComponents[0] = rdn; 335 * @param rdn The RDN for the child of this DN. 340 public DN concat(RDN rdn) argument 343 newComponents[0] = rdn; 683 RDN rdn = new RDN(attrType, attributeNameString, value); 699 rdnComponents.add(rdn); [all...] |
H A D | RDN.java | 711 RDN rdn = new RDN(attrType, name, value); 725 return rdn; 847 rdn.addValue(attrType, name, value); 848 return rdn; 873 rdn.addValue(attrType, name, value); 886 return rdn; 962 RDN rdn = (RDN) o; 963 return toNormalizedString().equals(rdn.toNormalizedString()); 1135 * @param rdn The RDN against which to compare this RDN. 1142 public int compareTo(RDN rdn) argument [all...] |
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/plugins/ |
H A D | UniqueAttributePluginTestCase.java | 365 //Rename with new rdn, should fail, there is an entry already with that 888 * @param rdn RDN value. 894 doModDN(DN dn, RDN rdn, boolean delOld, DN newSuperior, ResultCode rc) { argument 898 conn.processModifyDN(dn, rdn, delOld, newSuperior);
|
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/plugins/ |
H A D | UniqueAttributePluginTestCase.java | 366 //Rename with new rdn, should fail, there is an entry already with that 895 * @param rdn RDN value. 901 doModDN(DN dn, RDN rdn, boolean delOld, DN newSuperior, ResultCode rc) { argument 905 conn.processModifyDN(dn, rdn, delOld, newSuperior);
|
/forgerock/opendj2/src/server/org/opends/server/types/ |
H A D | DN.java | 170 * @param rdn The RDN to use for the new DN. It must not be 175 public DN(RDN rdn, DN parentDN) argument 177 ensureNotNull(rdn, parentDN); 180 rdnComponents = new RDN[] { rdn }; 185 rdnComponents[0] = rdn; 332 * @param rdn The RDN for the child of this DN. 337 public DN concat(RDN rdn) argument 340 newComponents[0] = rdn; 680 RDN rdn = new RDN(attrType, attributeNameString, value); 696 rdnComponents.add(rdn); [all...] |
H A D | RDN.java | 686 RDN rdn = new RDN(attrType, name, value); 699 return rdn; 810 rdn.addValue(attrType, name, value); 811 return rdn; 835 rdn.addValue(attrType, name, value); 848 return rdn; 920 RDN rdn = (RDN) o; 921 return toNormalizedString().equals(rdn.toNormalizedString()); 1083 * @param rdn The RDN against which to compare this RDN. 1091 public int compareTo(RDN rdn) argument [all...] |
/forgerock/opendj2.6.2/src/server/org/opends/server/types/ |
H A D | DN.java | 173 * @param rdn The RDN to use for the new DN. It must not be 178 public DN(RDN rdn, DN parentDN) argument 180 ensureNotNull(rdn, parentDN); 183 rdnComponents = new RDN[] { rdn }; 188 rdnComponents[0] = rdn; 335 * @param rdn The RDN for the child of this DN. 340 public DN concat(RDN rdn) argument 343 newComponents[0] = rdn; 683 RDN rdn = new RDN(attrType, attributeNameString, value); 699 rdnComponents.add(rdn); [all...] |
H A D | RDN.java | 711 RDN rdn = new RDN(attrType, name, value); 725 return rdn; 847 rdn.addValue(attrType, name, value); 848 return rdn; 873 rdn.addValue(attrType, name, value); 886 return rdn; 962 RDN rdn = (RDN) o; 963 return toNormalizedString().equals(rdn.toNormalizedString()); 1135 * @param rdn The RDN against which to compare this RDN. 1142 public int compareTo(RDN rdn) argument [all...] |
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/plugins/ |
H A D | UniqueAttributePluginTestCase.java | 365 //Rename with new rdn, should fail, there is an entry already with that 888 * @param rdn RDN value. 894 doModDN(DN dn, RDN rdn, boolean delOld, DN newSuperior, ResultCode rc) { argument 898 conn.processModifyDN(dn, rdn, delOld, newSuperior);
|
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/plugins/ |
H A D | UniqueAttributePluginTestCase.java | 366 //Rename with new rdn, should fail, there is an entry already with that 895 * @param rdn RDN value. 901 doModDN(DN dn, RDN rdn, boolean delOld, DN newSuperior, ResultCode rc) { argument 905 conn.processModifyDN(dn, rdn, delOld, newSuperior);
|
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/plugins/ |
H A D | UniqueAttributePluginTestCase.java | 1005 * @param rdn RDN value. 1010 protected static void doModDN(DN dn, RDN rdn, boolean delOld, DN newSuperior, argument 1015 conn.processModifyDN(dn, rdn, delOld, newSuperior);
|
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/ |
H A D | DN.java | 173 * @param rdn The RDN to use for the new DN. It must not be 178 public DN(RDN rdn, DN parentDN) argument 180 ensureNotNull(rdn, parentDN); 183 rdnComponents = new RDN[] { rdn }; 188 rdnComponents[0] = rdn; 335 * @param rdn The RDN for the child of this DN. 340 public DN concat(RDN rdn) argument 343 newComponents[0] = rdn; 683 RDN rdn = new RDN(attrType, attributeNameString, value); 699 rdnComponents.add(rdn); [all...] |
H A D | RDN.java | 711 RDN rdn = new RDN(attrType, name, value); 725 return rdn; 847 rdn.addValue(attrType, name, value); 848 return rdn; 873 rdn.addValue(attrType, name, value); 886 return rdn; 962 RDN rdn = (RDN) o; 963 return toNormalizedString().equals(rdn.toNormalizedString()); 1135 * @param rdn The RDN against which to compare this RDN. 1142 public int compareTo(RDN rdn) argument [all...] |
/forgerock/opendj2-hg/src/server/org/opends/server/types/ |
H A D | DN.java | 170 * @param rdn The RDN to use for the new DN. It must not be 175 public DN(RDN rdn, DN parentDN) argument 177 ensureNotNull(rdn, parentDN); 180 rdnComponents = new RDN[] { rdn }; 185 rdnComponents[0] = rdn; 332 * @param rdn The RDN for the child of this DN. 337 public DN concat(RDN rdn) argument 340 newComponents[0] = rdn; 680 RDN rdn = new RDN(attrType, attributeNameString, value); 696 rdnComponents.add(rdn); [all...] |