Searched defs:acis (Results 1 - 18 of 18) sorted by relevance

/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java95 List<Aci> acis = aciList.get(baseDN);
96 if (acis != null) {
99 for (Aci aci : acis) {
110 candidates.addAll(acis);
171 * @param acis A set of ACIs to add to the ACI list.
174 public void addAci(DN dn, SortedSet<Aci> acis) { argument
178 aciList.put(dn, new LinkedList<Aci>(acis));
253 ArrayList<Aci> acis = new ArrayList<Aci>();
258 acis.add(aci);
273 addAci(aciList, dn, acis);
332 addAci(DITCacheMap<List<Aci>> aciList, DN dn, List<Aci> acis) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java97 List<Aci> acis = aciList.get(baseDN);
98 if (acis != null) {
101 for (Aci aci : acis) {
114 candidates.addAll(acis);
175 * @param acis A set of ACIs to add to the ACI list.
178 public void addAci(DN dn, SortedSet<Aci> acis) { argument
182 aciList.put(dn, new LinkedList<Aci>(acis));
257 ArrayList<Aci> acis = new ArrayList<Aci>();
262 acis.add(aci);
277 addAci(aciList, dn, acis);
336 addAci(DITCacheMap<List<Aci>> aciList, DN dn, List<Aci> acis) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java98 List<Aci> acis = aciList.get(baseDN);
99 if (acis != null) {
102 for (Aci aci : acis) {
115 candidates.addAll(acis);
176 * @param acis A set of ACIs to add to the ACI list.
179 public void addAci(DN dn, SortedSet<Aci> acis) { argument
183 aciList.put(dn, new LinkedList<Aci>(acis));
258 ArrayList<Aci> acis = new ArrayList<Aci>();
263 acis.add(aci);
278 addAci(aciList, dn, acis);
337 addAci(DITCacheMap<List<Aci>> aciList, DN dn, List<Aci> acis) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java95 List<Aci> acis = aciList.get(baseDN);
96 if (acis != null) {
99 for (Aci aci : acis) {
110 candidates.addAll(acis);
171 * @param acis A set of ACIs to add to the ACI list.
174 public void addAci(DN dn, SortedSet<Aci> acis) { argument
178 aciList.put(dn, new LinkedList<Aci>(acis));
253 ArrayList<Aci> acis = new ArrayList<Aci>();
258 acis.add(aci);
273 addAci(aciList, dn, acis);
332 addAci(DITCacheMap<List<Aci>> aciList, DN dn, List<Aci> acis) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java97 List<Aci> acis = aciList.get(baseDN);
98 if (acis != null) {
101 for (Aci aci : acis) {
114 candidates.addAll(acis);
175 * @param acis A set of ACIs to add to the ACI list.
178 public void addAci(DN dn, SortedSet<Aci> acis) { argument
182 aciList.put(dn, new LinkedList<Aci>(acis));
257 ArrayList<Aci> acis = new ArrayList<Aci>();
262 acis.add(aci);
277 addAci(aciList, dn, acis);
336 addAci(DITCacheMap<List<Aci>> aciList, DN dn, List<Aci> acis) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DAciList.java97 List<Aci> acis = aciList.get(baseDN);
98 if (acis != null) {
101 for (Aci aci : acis) {
112 candidates.addAll(acis);
173 * @param acis A set of ACIs to add to the ACI list.
176 public void addAci(DN dn, SortedSet<Aci> acis) { argument
180 aciList.put(dn, new LinkedList<>(acis));
255 List<Aci> acis = new ArrayList<>();
259 acis.add(Aci.decode(value, dn));
270 addAci(aciList, dn, acis);
329 addAci(DITCacheMap<List<Aci>> aciList, DN dn, List<Aci> acis) argument
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTestCase.java477 protected static String makeDelLDIF(String attr, String dn, String... acis) { argument
482 for(String aci : acis)
499 protected static String makeAddLDIF(String attr, String dn, String... acis) { argument
504 for(String aci : acis)
H A DAciTests.java609 // OpenDJ 2.5 doesn't support acis with options
752 // OpenDJ 2.5 doesn't support acis with options
819 List<String> acis = new ArrayList<String>();
821 acis.add("aci: " + aciAndMask[0]);
823 return buildAciValidationParams(acis, false /*test once per aci*/);
826 // This makes sure that all of the acis in the INVALID_ACIS_IF_ANY_CHAR_REMOVED
827 // tests are valid acis.
855 // We use this with acis that are crafted in such a way so that they are
875 private Object[][] buildAciValidationParams(List<String> acis, boolean testMultipleCombos) { argument
878 for (String aci: acis) {
2308 makeAttrAddAciLdif(String attr, String dn, String... acis) argument
2313 makeAddAciLdif(String dn, String... acis) argument
2317 _makeAddAciLdif(String attr, String dn, String... acis) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTestCase.java474 protected static String makeDelLDIF(String attr, String dn, String... acis) { argument
479 for(String aci : acis)
495 protected static String makeAddLDIF(String attr, String dn, String... acis) { argument
500 for(String aci : acis)
H A DAciTests.java599 // OpenDJ 2.5 doesn't support acis with options
742 // OpenDJ 2.5 doesn't support acis with options
809 List<String> acis = new ArrayList<String>();
811 acis.add("aci: " + aciAndMask[0]);
813 return buildAciValidationParams(acis, false /*test once per aci*/);
816 // This makes sure that all of the acis in the INVALID_ACIS_IF_ANY_CHAR_REMOVED
817 // tests are valid acis.
845 // We use this with acis that are crafted in such a way so that they are
865 private Object[][] buildAciValidationParams(List<String> acis, boolean testMultipleCombos) { argument
868 for (String aci: acis) {
2251 makeAttrAddAciLdif(String attr, String dn, String... acis) argument
2256 makeAddAciLdif(String dn, String... acis) argument
2260 _makeAddAciLdif(String attr, String dn, String... acis) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTestCase.java477 protected static String makeDelLDIF(String attr, String dn, String... acis) { argument
482 for(String aci : acis)
499 protected static String makeAddLDIF(String attr, String dn, String... acis) { argument
504 for(String aci : acis)
H A DAciTests.java609 // OpenDJ 2.5 doesn't support acis with options
752 // OpenDJ 2.5 doesn't support acis with options
819 List<String> acis = new ArrayList<String>();
821 acis.add("aci: " + aciAndMask[0]);
823 return buildAciValidationParams(acis, false /*test once per aci*/);
826 // This makes sure that all of the acis in the INVALID_ACIS_IF_ANY_CHAR_REMOVED
827 // tests are valid acis.
855 // We use this with acis that are crafted in such a way so that they are
875 private Object[][] buildAciValidationParams(List<String> acis, boolean testMultipleCombos) { argument
878 for (String aci: acis) {
2308 makeAttrAddAciLdif(String attr, String dn, String... acis) argument
2313 makeAddAciLdif(String dn, String... acis) argument
2317 _makeAddAciLdif(String attr, String dn, String... acis) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTestCase.java474 protected static String makeDelLDIF(String attr, String dn, String... acis) { argument
479 for(String aci : acis)
495 protected static String makeAddLDIF(String attr, String dn, String... acis) { argument
500 for(String aci : acis)
H A DAciTests.java599 // OpenDJ 2.5 doesn't support acis with options
742 // OpenDJ 2.5 doesn't support acis with options
809 List<String> acis = new ArrayList<String>();
811 acis.add("aci: " + aciAndMask[0]);
813 return buildAciValidationParams(acis, false /*test once per aci*/);
816 // This makes sure that all of the acis in the INVALID_ACIS_IF_ANY_CHAR_REMOVED
817 // tests are valid acis.
845 // We use this with acis that are crafted in such a way so that they are
865 private Object[][] buildAciValidationParams(List<String> acis, boolean testMultipleCombos) { argument
868 for (String aci: acis) {
2251 makeAttrAddAciLdif(String attr, String dn, String... acis) argument
2256 makeAddAciLdif(String dn, String... acis) argument
2260 _makeAddAciLdif(String attr, String dn, String... acis) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTestCase.java477 protected static String makeDelLDIF(String attr, String dn, String... acis) { argument
482 for(String aci : acis)
499 protected static String makeAddLDIF(String attr, String dn, String... acis) { argument
504 for(String aci : acis)
H A DAciTests.java609 // OpenDJ 2.5 doesn't support acis with options
752 // OpenDJ 2.5 doesn't support acis with options
819 List<String> acis = new ArrayList<String>();
821 acis.add("aci: " + aciAndMask[0]);
823 return buildAciValidationParams(acis, false /*test once per aci*/);
826 // This makes sure that all of the acis in the INVALID_ACIS_IF_ANY_CHAR_REMOVED
827 // tests are valid acis.
855 // We use this with acis that are crafted in such a way so that they are
875 private Object[][] buildAciValidationParams(List<String> acis, boolean testMultipleCombos) { argument
878 for (String aci: acis) {
2308 makeAttrAddAciLdif(String attr, String dn, String... acis) argument
2313 makeAddAciLdif(String dn, String... acis) argument
2317 _makeAddAciLdif(String attr, String dn, String... acis) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/authorization/dseecompat/
H A DAciTestCase.java537 protected static String makeDelLDIF(String attr, String dn, String... acis) { argument
542 for(String aci : acis)
562 protected static String makeAddLDIF(String attr, String dn, String... acis) { argument
567 for(String aci : acis)
H A DAciTests.java604 // OpenDJ 2.5 doesn't support acis with options
747 // OpenDJ 2.5 doesn't support acis with options
816 List<String> acis = new ArrayList<>();
818 acis.add("aci: " + aciAndMask[0]);
820 return buildAciValidationParams(acis, false /*test once per aci*/);
824 * This makes sure that all of the acis in the INVALID_ACIS_IF_ANY_CHAR_REMOVED
825 * tests are valid acis.
854 * We use this with acis that are crafted in such a way so that they are
875 private Object[][] buildAciValidationParams(List<String> acis, boolean testMultipleCombos) { argument
878 for (String aci: acis) {
2231 makeAttrAddAciLdif(String attr, String dn, String... acis) argument
2236 makeAddAciLdif(String dn, String... acis) argument
2240 _makeAddAciLdif(String attr, String dn, String... acis) argument
[all...]

Completed in 113 milliseconds