Searched refs:Entry (Results 176 - 200 of 3212) sorted by relevance

1234567891011>>

/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DAuthenticationInfo.java60 private Entry authenticationEntry;
66 private Entry authorizationEntry;
105 public AuthenticationInfo(Entry authenticationEntry, boolean isRoot)
130 public AuthenticationInfo(Entry authenticationEntry, DN simpleBindDN,
162 public AuthenticationInfo(Entry authenticationEntry,
204 public AuthenticationInfo(Entry authenticationEntry,
205 Entry authorizationEntry,
309 public Entry getAuthenticationEntry()
358 public Entry getAuthorizationEntry()
516 public AuthenticationInfo duplicate(Entry newAuthenticationEntr
[all...]
H A DCacheEntry.java51 private Entry entry;
65 public CacheEntry(Entry entry, Backend backend, long entryID)
79 public Entry getEntry()
91 public void setEntry(Entry entry)
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DAuthenticationInfo.java59 private Entry authenticationEntry;
65 private Entry authorizationEntry;
104 public AuthenticationInfo(Entry authenticationEntry, boolean isRoot)
129 public AuthenticationInfo(Entry authenticationEntry, DN simpleBindDN,
161 public AuthenticationInfo(Entry authenticationEntry,
203 public AuthenticationInfo(Entry authenticationEntry,
204 Entry authorizationEntry,
308 public Entry getAuthenticationEntry()
357 public Entry getAuthorizationEntry()
515 public AuthenticationInfo duplicate(Entry newAuthenticationEntr
[all...]
H A DCacheEntry.java50 private Entry entry;
64 public CacheEntry(Entry entry, Backend backend, long entryID)
78 public Entry getEntry()
90 public void setEntry(Entry entry)
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DAuthenticationInfo.java60 private Entry authenticationEntry;
66 private Entry authorizationEntry;
105 public AuthenticationInfo(Entry authenticationEntry, boolean isRoot)
130 public AuthenticationInfo(Entry authenticationEntry, DN simpleBindDN,
162 public AuthenticationInfo(Entry authenticationEntry,
204 public AuthenticationInfo(Entry authenticationEntry,
205 Entry authorizationEntry,
309 public Entry getAuthenticationEntry()
358 public Entry getAuthorizationEntry()
516 public AuthenticationInfo duplicate(Entry newAuthenticationEntr
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java130 private transient Entry table[];
213 table = new Entry[initCapacity];
321 Entry tab[] = table;
323 for (Entry e = tab[i]; (e != null) && !found; e = e.next) {
364 Entry tab[] = table;
367 for (Entry e = tab[index]; (e != null) && !found; e = e.next) {
392 Entry tab[] = table;
395 for (Entry e = tab[index]; (e != null) && (value == null);
419 Entry oldMap[] = table;
430 Entry newMa
985 private static class Entry implements Map.Entry { class in class:Cache
994 protected Entry(int hash, Object key, Object value, Entry next) { method in class:Cache.Entry
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java130 private transient Entry table[];
213 table = new Entry[initCapacity];
321 Entry tab[] = table;
323 for (Entry e = tab[i]; (e != null) && !found; e = e.next) {
364 Entry tab[] = table;
367 for (Entry e = tab[index]; (e != null) && !found; e = e.next) {
392 Entry tab[] = table;
395 for (Entry e = tab[index]; (e != null) && (value == null);
419 Entry oldMap[] = table;
430 Entry newMa
985 private static class Entry implements Map.Entry { class in class:Cache
994 protected Entry(int hash, Object key, Object value, Entry next) { method in class:Cache.Entry
[all...]
/forgerock/opendj-v3/opendj-config/src/test/java/org/forgerock/opendj/config/server/
H A DDefaultBehaviorTest.java50 import org.forgerock.opendj.ldap.Entry;
110 static final Entry CONFIG = makeEntry(
116 static final Entry TEST_PARENTS = makeEntry(
133 static final Entry TEST_PARENT_1 = makeEntry(LDIF_TEST_PARENT_1);
136 static final Entry TEST_PARENT_2 = makeEntry(
148 static final Entry TEST_CHILD_BASE_1 = makeEntry(
154 static final Entry TEST_CHILD_BASE_2 = makeEntry(
170 private static final Entry TEST_CHILD_1 = makeEntry(LDIF_TEST_CHILD_1);
186 private static final Entry TEST_CHILD_2 = makeEntry(
198 private static final Entry TEST_CHILD_
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DRegularExpressionIdentityMapperTestCase.java47 import org.opends.server.types.Entry;
105 Entry mapperEntry = TestCaseUtils.makeEntry(
143 Entry mapperEntry = TestCaseUtils.makeEntry(
182 Entry mapperEntry = TestCaseUtils.makeEntry(
224 Entry mappedEntry = mapper.getEntryForID("test@example.com");
246 Entry mapperEntry = TestCaseUtils.makeEntry(
289 Entry mappedEntry = mapper.getEntryForID("test@example.com");
311 Entry mapperEntry = TestCaseUtils.makeEntry(
354 Entry mappedEntry = mapper.getEntryForID("test@example.com");
376 Entry mapperEntr
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DRegularExpressionIdentityMapperTestCase.java46 import org.opends.server.types.Entry;
104 Entry mapperEntry = TestCaseUtils.makeEntry(
142 Entry mapperEntry = TestCaseUtils.makeEntry(
181 Entry mapperEntry = TestCaseUtils.makeEntry(
223 Entry mappedEntry = mapper.getEntryForID("test@example.com");
245 Entry mapperEntry = TestCaseUtils.makeEntry(
288 Entry mappedEntry = mapper.getEntryForID("test@example.com");
310 Entry mapperEntry = TestCaseUtils.makeEntry(
353 Entry mappedEntry = mapper.getEntryForID("test@example.com");
375 Entry mapperEntr
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DRegularExpressionIdentityMapperTestCase.java47 import org.opends.server.types.Entry;
105 Entry mapperEntry = TestCaseUtils.makeEntry(
143 Entry mapperEntry = TestCaseUtils.makeEntry(
182 Entry mapperEntry = TestCaseUtils.makeEntry(
224 Entry mappedEntry = mapper.getEntryForID("test@example.com");
246 Entry mapperEntry = TestCaseUtils.makeEntry(
289 Entry mappedEntry = mapper.getEntryForID("test@example.com");
311 Entry mapperEntry = TestCaseUtils.makeEntry(
354 Entry mappedEntry = mapper.getEntryForID("test@example.com");
376 Entry mapperEntr
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DRegularExpressionIdentityMapperTestCase.java46 import org.opends.server.types.Entry;
104 Entry mapperEntry = TestCaseUtils.makeEntry(
142 Entry mapperEntry = TestCaseUtils.makeEntry(
181 Entry mapperEntry = TestCaseUtils.makeEntry(
223 Entry mappedEntry = mapper.getEntryForID("test@example.com");
245 Entry mapperEntry = TestCaseUtils.makeEntry(
288 Entry mappedEntry = mapper.getEntryForID("test@example.com");
310 Entry mapperEntry = TestCaseUtils.makeEntry(
353 Entry mappedEntry = mapper.getEntryForID("test@example.com");
375 Entry mapperEntr
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DRegularExpressionIdentityMapperTestCase.java47 import org.opends.server.types.Entry;
105 Entry mapperEntry = TestCaseUtils.makeEntry(
143 Entry mapperEntry = TestCaseUtils.makeEntry(
182 Entry mapperEntry = TestCaseUtils.makeEntry(
224 Entry mappedEntry = mapper.getEntryForID("test@example.com");
246 Entry mapperEntry = TestCaseUtils.makeEntry(
289 Entry mappedEntry = mapper.getEntryForID("test@example.com");
311 Entry mapperEntry = TestCaseUtils.makeEntry(
354 Entry mappedEntry = mapper.getEntryForID("test@example.com");
376 Entry mapperEntr
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DRegularExpressionIdentityMapperTestCase.java47 import org.opends.server.types.Entry;
105 Entry mapperEntry = TestCaseUtils.makeEntry(
143 Entry mapperEntry = TestCaseUtils.makeEntry(
182 Entry mapperEntry = TestCaseUtils.makeEntry(
224 Entry mappedEntry = mapper.getEntryForID("test@example.com");
246 Entry mapperEntry = TestCaseUtils.makeEntry(
289 Entry mappedEntry = mapper.getEntryForID("test@example.com");
311 Entry mapperEntry = TestCaseUtils.makeEntry(
354 Entry mappedEntry = mapper.getEntryForID("test@example.com");
376 Entry mapperEntr
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DCacheEntry.java51 private Entry entry;
65 public CacheEntry(Entry entry, Backend backend, long entryID)
79 public Entry getEntry()
91 public void setEntry(Entry entry)
/forgerock/opendj2/src/server/org/opends/server/types/
H A DCacheEntry.java50 private Entry entry;
64 public CacheEntry(Entry entry, Backend backend, long entryID)
78 public Entry getEntry()
90 public void setEntry(Entry entry)
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DCacheEntry.java51 private Entry entry;
65 public CacheEntry(Entry entry, Backend backend, long entryID)
79 public Entry getEntry()
91 public void setEntry(Entry entry)
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProvider.java81 public Set<AttributeValue> getValues(Entry entry,
95 public boolean hasValue(Entry entry, VirtualAttributeRule rule)
103 public boolean hasValue(Entry entry, VirtualAttributeRule rule,
128 public ConditionResult matchesSubstring(Entry entry,
140 public ConditionResult greaterThanOrEqualTo(Entry entry,
150 public ConditionResult lessThanOrEqualTo(Entry entry,
160 public ConditionResult approximatelyEqualTo(Entry entry,
H A DSubschemaSubentryVirtualAttributeProvider.java70 public Set<AttributeValue> getValues(Entry entry,
86 public ConditionResult matchesSubstring(Entry entry,
98 public ConditionResult greaterThanOrEqualTo(Entry entry,
108 public ConditionResult lessThanOrEqualTo(Entry entry,
118 public ConditionResult approximatelyEqualTo(Entry entry,
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProvider.java81 public Set<AttributeValue> getValues(Entry entry,
95 public boolean hasValue(Entry entry, VirtualAttributeRule rule)
103 public boolean hasValue(Entry entry, VirtualAttributeRule rule,
128 public ConditionResult matchesSubstring(Entry entry,
140 public ConditionResult greaterThanOrEqualTo(Entry entry,
150 public ConditionResult lessThanOrEqualTo(Entry entry,
160 public ConditionResult approximatelyEqualTo(Entry entry,
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProvider.java43 import org.opends.server.types.Entry;
77 public Attribute getValues(Entry entry, VirtualAttributeRule rule)
86 public boolean hasValue(Entry entry, VirtualAttributeRule rule)
94 public ConditionResult matchesSubstring(Entry entry,
106 public ConditionResult greaterThanOrEqualTo(Entry entry,
116 public ConditionResult lessThanOrEqualTo(Entry entry,
126 public ConditionResult approximatelyEqualTo(Entry entry,
H A DStructuralObjectClassVirtualAttributeProvider.java40 import org.opends.server.types.Entry;
73 public Attribute getValues(Entry entry, VirtualAttributeRule rule)
81 public boolean hasValue(Entry entry, VirtualAttributeRule rule)
88 public ConditionResult matchesSubstring(Entry entry,
100 public ConditionResult greaterThanOrEqualTo(Entry entry,
110 public ConditionResult lessThanOrEqualTo(Entry entry,
120 public ConditionResult approximatelyEqualTo(Entry entry,
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DSubschemaSubentryVirtualAttributeProvider.java97 public Set<AttributeValue> getValues(Entry entry,
117 public ConditionResult matchesSubstring(Entry entry,
133 public ConditionResult greaterThanOrEqualTo(Entry entry,
147 public ConditionResult lessThanOrEqualTo(Entry entry,
161 public ConditionResult approximatelyEqualTo(Entry entry,
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DSubschemaSubentryVirtualAttributeProvider.java97 public Set<AttributeValue> getValues(Entry entry,
117 public ConditionResult matchesSubstring(Entry entry,
133 public ConditionResult greaterThanOrEqualTo(Entry entry,
147 public ConditionResult lessThanOrEqualTo(Entry entry,
161 public ConditionResult approximatelyEqualTo(Entry entry,
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DSubschemaSubentryVirtualAttributeProvider.java97 public Set<AttributeValue> getValues(Entry entry,
117 public ConditionResult matchesSubstring(Entry entry,
133 public ConditionResult greaterThanOrEqualTo(Entry entry,
147 public ConditionResult lessThanOrEqualTo(Entry entry,
161 public ConditionResult approximatelyEqualTo(Entry entry,

Completed in 175 milliseconds

1234567891011>>