Searched refs:e1 (Results 1 - 25 of 150) sorted by relevance

123456

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementCombiner.java167 * @param e1 Entitlement.
170 protected void mergeActionValues(Entitlement e1, Entitlement e2) { argument
171 if (!e1.hasAdvice() && !e2.hasAdvice()) {
173 Map<String, Boolean> a1 = e1.getActionValues();
199 e1.setActionValues(result);
202 e1.setActionNames(Collections.EMPTY_SET);
211 * @param e1 Entitlement.
214 protected void mergeAdvices(Entitlement e1, Entitlement e2) { argument
216 Map<String, Set<String>> a1 = e1.getAdvices();
246 e1
256 mergeAttributes(Entitlement e1, Entitlement e2) argument
297 mergeTimeToLiveValue(Entitlement e1, Entitlement e2) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementCombiner.java168 * @param e1 Entitlement.
171 protected void mergeActionValues(Entitlement e1, Entitlement e2) { argument
172 if (!e1.hasAdvice() && !e2.hasAdvice()) {
174 Map<String, Boolean> a1 = e1.getActionValues();
200 e1.setActionValues(result);
203 e1.setActionNames(Collections.EMPTY_SET);
212 * @param e1 Entitlement.
215 protected void mergeAdvices(Entitlement e1, Entitlement e2) { argument
217 Map<String, Set<String>> a1 = e1.getAdvices();
247 e1
257 mergeAttributes(Entitlement e1, Entitlement e2) argument
298 mergeTimeToLiveValue(Entitlement e1, Entitlement e2) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPNameBuilder.java160 } catch (InvalidNameException e1) {
162 throw new RuntimeException(e1);
179 } catch (InvalidNameException e1) {
181 throw new RuntimeException(e1);
228 } catch (InvalidNameException e1) {
230 throw new RuntimeException(e1);
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/client/ldap/
H A DLDAPNameBuilder.java161 } catch (InvalidNameException e1) {
163 throw new RuntimeException(e1);
180 } catch (InvalidNameException e1) {
182 throw new RuntimeException(e1);
229 } catch (InvalidNameException e1) {
231 throw new RuntimeException(e1);
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPNameBuilder.java161 } catch (InvalidNameException e1) {
163 throw new RuntimeException(e1);
180 } catch (InvalidNameException e1) {
182 throw new RuntimeException(e1);
229 } catch (InvalidNameException e1) {
231 throw new RuntimeException(e1);
/forgerock/opendj2-hg/src/server/org/opends/server/admin/client/ldap/
H A DLDAPNameBuilder.java160 } catch (InvalidNameException e1) {
162 throw new RuntimeException(e1);
179 } catch (InvalidNameException e1) {
181 throw new RuntimeException(e1);
228 } catch (InvalidNameException e1) {
230 throw new RuntimeException(e1);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/client/ldap/
H A DLDAPNameBuilder.java161 } catch (InvalidNameException e1) {
163 throw new RuntimeException(e1);
180 } catch (InvalidNameException e1) {
182 throw new RuntimeException(e1);
229 } catch (InvalidNameException e1) {
231 throw new RuntimeException(e1);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/client/ldap/
H A DLDAPNameBuilder.java153 } catch (InvalidNameException e1) {
155 throw new RuntimeException(e1);
172 } catch (InvalidNameException e1) {
174 throw new RuntimeException(e1);
215 } catch (InvalidNameException e1) {
217 throw new RuntimeException(e1);
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DLdapTestCase.java81 ListIterator<LDAPAttribute> e1 = list1.listIterator();
83 while(e1.hasNext() && e2.hasNext()) {
84 LDAPAttribute o1 = e1.next();
89 return !(e1.hasNext() || e2.hasNext());
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DLdapTestCase.java76 Iterator<LDAPAttribute> e1 = list1.iterator();
78 while(e1.hasNext() && e2.hasNext()) {
79 LDAPAttribute o1 = e1.next();
84 return !e1.hasNext() && !e2.hasNext();
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DLdapTestCase.java81 ListIterator<LDAPAttribute> e1 = list1.listIterator();
83 while(e1.hasNext() && e2.hasNext()) {
84 LDAPAttribute o1 = e1.next();
89 return !(e1.hasNext() || e2.hasNext());
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DLdapTestCase.java76 Iterator<LDAPAttribute> e1 = list1.iterator();
78 while(e1.hasNext() && e2.hasNext()) {
79 LDAPAttribute o1 = e1.next();
84 return !e1.hasNext() && !e2.hasNext();
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DLdapTestCase.java81 ListIterator<LDAPAttribute> e1 = list1.listIterator();
83 while(e1.hasNext() && e2.hasNext()) {
84 LDAPAttribute o1 = e1.next();
89 return !(e1.hasNext() || e2.hasNext());
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/protocols/ldap/
H A DLdapTestCase.java76 Iterator<LDAPAttribute> e1 = list1.iterator();
78 while(e1.hasNext() && e2.hasNext()) {
79 LDAPAttribute o1 = e1.next();
86 return !e1.hasNext() && !e2.hasNext();
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DMultiWildcardEvalTest.java62 Entitlement e1 = new Entitlement(
68 p1.setEntitlement(e1);
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DMultiWildcardEvalTest.java62 Entitlement e1 = new Entitlement(
68 p1.setEntitlement(e1);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DUserPasswordValidationHelper.java193 } catch (InstantiationException e1) {
195 + "Unable to instantiate class: " + className, e1);
199 } catch (IllegalAccessException e1) {
201 + "The class is " + className + " unaccessable: ", e1);
205 } catch (ClassNotFoundException e1) {
207 + "Unable to locate class " + className, e1);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DUserPasswordValidationHelper.java193 } catch (InstantiationException e1) {
195 + "Unable to instantiate class: " + className, e1);
199 } catch (IllegalAccessException e1) {
201 + "The class is " + className + " unaccessable: ", e1);
205 } catch (ClassNotFoundException e1) {
207 + "Unable to locate class " + className, e1);
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntityTagVirtualAttributeProviderTestCase.java312 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example1,dc=com",
316 assertFalse(getEntityTag(e1).equals(getEntityTag(e2)));
330 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
335 assertEquals(getEntityTag(e1), getEntityTag(e2));
350 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
356 assertEquals(getEntityTag(e1), getEntityTag(e2));
371 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
375 assertEquals(getEntityTag(e1), getEntityTag(e2));
643 Entry e1 = readEntry(conn, userDN);
644 String etag1 = e1
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntityTagVirtualAttributeProviderTestCase.java311 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example1,dc=com",
315 assertFalse(getEntityTag(e1).equals(getEntityTag(e2)));
329 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
334 assertEquals(getEntityTag(e1), getEntityTag(e2));
349 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
355 assertEquals(getEntityTag(e1), getEntityTag(e2));
370 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
374 assertEquals(getEntityTag(e1), getEntityTag(e2));
642 Entry e1 = readEntry(conn, userDN);
643 String etag1 = e1
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntityTagVirtualAttributeProviderTestCase.java312 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example1,dc=com",
316 assertFalse(getEntityTag(e1).equals(getEntityTag(e2)));
330 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
335 assertEquals(getEntityTag(e1), getEntityTag(e2));
350 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
356 assertEquals(getEntityTag(e1), getEntityTag(e2));
371 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
375 assertEquals(getEntityTag(e1), getEntityTag(e2));
643 Entry e1 = readEntry(conn, userDN);
644 String etag1 = e1
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntityTagVirtualAttributeProviderTestCase.java311 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example1,dc=com",
315 assertFalse(getEntityTag(e1).equals(getEntityTag(e2)));
329 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
334 assertEquals(getEntityTag(e1), getEntityTag(e2));
349 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
355 assertEquals(getEntityTag(e1), getEntityTag(e2));
370 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
374 assertEquals(getEntityTag(e1), getEntityTag(e2));
642 Entry e1 = readEntry(conn, userDN);
643 String etag1 = e1
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntityTagVirtualAttributeProviderTestCase.java312 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example1,dc=com",
316 assertFalse(getEntityTag(e1).equals(getEntityTag(e2)));
330 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
335 assertEquals(getEntityTag(e1), getEntityTag(e2));
350 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
356 assertEquals(getEntityTag(e1), getEntityTag(e2));
371 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
375 assertEquals(getEntityTag(e1), getEntityTag(e2));
643 Entry e1 = readEntry(conn, userDN);
644 String etag1 = e1
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DEntityTagVirtualAttributeProviderTestCase.java272 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example1,dc=com",
277 assertFalse(getEntityTag(e1, rule).equals(getEntityTag(e2, rule)));
289 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
295 assertEquals(getEntityTag(e1, rule), getEntityTag(e2, rule));
308 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
315 assertEquals(getEntityTag(e1, rule), getEntityTag(e2, rule));
328 final Entry e1 = TestCaseUtils.makeEntry("dn: dc=example,dc=com",
333 assertEquals(getEntityTag(e1, rule), getEntityTag(e2, rule));
511 Entry e1 = readEntry(userDN);
512 String etag1 = e1
[all...]
/forgerock/opendj-b2.6/tests/staf-tests/shared/java/ldapjndi/
H A DsaslSearchClient.java198 } catch (CommunicationException e1) {
199 e1.printStackTrace();
200 errorMessage = e1.getMessage();
201 if (e1.getCause() != null)
202 errorCause = e1.getCause().toString();

Completed in 93 milliseconds

123456