Searched refs:entry (Results 26 - 50 of 2342) sorted by relevance

1234567891011>>

/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DCacheEntry.java35 * This class defines a Directory Server cache entry, which is simply
36 * used to store an entry with its associated backend and entry ID.
46 // The backend with which this cache entry is associated.
49 // The entry itself.
50 private Entry entry; field in class:CacheEntry
52 // The entry ID for the entry within the backend.
58 * Creates a new cache entry with the provided information.
60 * @param entry Th
64 CacheEntry(Entry entry, Backend backend, long entryID) argument
90 setEntry(Entry entry) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/api/query/
H A DPartialToken.java43 private final Map<CoreTokenField, Object> entry; field in class:PartialToken
47 * @param entry Non null, possibly empty collection.
49 public PartialToken(Map<CoreTokenField, Object> entry) { argument
50 Reject.ifNull(entry);
51 this.entry = entry;
63 entry = new HashMap<CoreTokenField, Object>(token.entry);
64 entry.put(field, value);
73 return Collections.unmodifiableSet(entry
[all...]
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/
H A DMapMarshallUtils.java55 for (Map.Entry<String, Object> entry : jsonMap.entrySet()) {
56 if (entry.getValue() != null) {
57 smsMap.put(entry.getKey(), CollectionUtils.asSet(entry.getValue().toString()));
59 smsMap.put(entry.getKey(), Collections.EMPTY_SET);
77 for (Map.Entry<String, Set<String>> entry : attributeMap.entrySet()) {
78 if ((entry.getValue() != null) && !entry.getValue().isEmpty()) {
79 jsonValueMap.put(entry.getKey(), entry
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/
H A DMapMarshallUtils.java55 for (Map.Entry<String, Object> entry : jsonMap.entrySet()) {
56 if (entry.getValue() != null) {
57 smsMap.put(entry.getKey(), CollectionUtils.asSet(entry.getValue().toString()));
59 smsMap.put(entry.getKey(), Collections.EMPTY_SET);
77 for (Map.Entry<String, Set<String>> entry : attributeMap.entrySet()) {
78 if ((entry.getValue() != null) && !entry.getValue().isEmpty()) {
79 jsonValueMap.put(entry.getKey(), entry
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/
H A DAttrHistoricalSingleTest.java61 private Entry entry; field in class:AttrHistoricalSingleTest
70 entry = TestCaseUtils.makeEntry(
94 replayOperation(csn, entry, mod, SUCCESS);
95 assertAttributeValue(entry, "X");
98 replayOperation(csn, entry, mod, SUCCESS);
99 assertNoAttributeValue(entry);
108 replayOperation(t[0], entry, mod, SUCCESS);
109 assertAttributeValue(entry, "X");
112 replayOperation(t[2], entry, mod, SUCCESS);
113 assertNoAttributeValue(entry);
300 replayOperation(CSN csn, Entry entry, Modification mod, boolean shouldConflict) argument
307 replayOperationSuppressMod(CSN csn, Entry entry, Modification mod, boolean shouldConflict) argument
315 replayOperation(Iterator<Modification> modsIterator, CSN csn, Entry entry, Modification mod, boolean shouldConflict) argument
329 assertAttributeValue(Entry entry, Modification mod) argument
364 getActualValue(Entry entry, Modification mod) argument
381 conformsToSchema(Entry entry) argument
388 assertNoAttributeValue(Entry entry) argument
393 assertAttributeValue(Entry entry, String expectedValue) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/plugin/
H A DFakeModdnOperation.java39 * information that stay in the entry in the database.
47 private Entry entry; field in class:FakeModdnOperation
52 * @param cn The ChangeNumber when the entry was last renamed.
53 * @param entry The entry that the MODDN operation will rename.
55 public FakeModdnOperation(ChangeNumber cn, Entry entry) argument
58 this.entry = entry;
67 DN dn = entry.getDN();
69 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/plugin/
H A DFakeModdnOperation.java37 * information that stay in the entry in the database.
44 private Entry entry; field in class:FakeModdnOperation
49 * @param csn The CSN when the entry was last renamed.
50 * @param entry The entry that the MODDN operation will rename.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
55 this.entry = entry;
64 DN dn = entry.getDN();
66 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/plugin/
H A DFakeModdnOperation.java39 * information that stay in the entry in the database.
47 private Entry entry; field in class:FakeModdnOperation
52 * @param cn The ChangeNumber when the entry was last renamed.
53 * @param entry The entry that the MODDN operation will rename.
55 public FakeModdnOperation(ChangeNumber cn, Entry entry) argument
58 this.entry = entry;
67 DN dn = entry.getDN();
69 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/plugin/
H A DFakeModdnOperation.java39 * information that stay in the entry in the database.
47 private Entry entry; field in class:FakeModdnOperation
52 * @param cn The ChangeNumber when the entry was last renamed.
53 * @param entry The entry that the MODDN operation will rename.
55 public FakeModdnOperation(ChangeNumber cn, Entry entry) argument
58 this.entry = entry;
67 DN dn = entry.getDN();
69 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DFakeModdnOperation.java37 * information that stay in the entry in the database.
44 private Entry entry; field in class:FakeModdnOperation
49 * @param csn The CSN when the entry was last renamed.
50 * @param entry The entry that the MODDN operation will rename.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
55 this.entry = entry;
64 DN dn = entry.getDN();
66 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/
H A DFakeModdnOperation.java37 * information that stay in the entry in the database.
44 private Entry entry; field in class:FakeModdnOperation
49 * @param csn The CSN when the entry was last renamed.
50 * @param entry The entry that the MODDN operation will rename.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
55 this.entry = entry;
62 DN dn = entry.getName();
64 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/openidm-v4/openidm-smartevent/src/main/java/org/forgerock/openidm/smartevent/core/
H A DStatisticsHandler.java134 for (java.util.Map.Entry<String, MonitoringInfo> entry : map.entrySet()) {
135 stats.put(entry.getKey(), entry.getValue().toString());
153 DisruptorReferringEventEntry entry = buf.claimAndGetPreallocated(count);
154 if (entry != null && entry.startTime > 0) {
155 recent.put(Long.valueOf(entry.startTime), entry.toString());
170 for (MonitoringInfo entry : map.values()) {
171 entry
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/api/query/
H A DPartialToken.java44 private final Map<CoreTokenField, Object> entry; field in class:PartialToken
48 * @param entry Non null, possibly empty collection.
50 public PartialToken(Map<CoreTokenField, Object> entry) { argument
51 Reject.ifNull(entry);
52 this.entry = entry;
64 entry = new HashMap<>(token.entry);
65 entry.put(field, value);
74 return Collections.unmodifiableSet(entry
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DModifyConflictTest.java82 Entry entry = initializeEntry();
84 // load historical from the entry
85 EntryHistorical hist = EntryHistorical.newInstanceFromEntry(entry);
90 testModify(entry, hist, 10, true, buildMod(DESCRIPTION, ModificationType.REPLACE, "init value"));
97 testModify(entry, hist, 1, false, buildMod(DESCRIPTION, ModificationType.ADD, "older value"));
105 testModify(entry, hist, 2, false, buildMod(DESCRIPTION, ModificationType.ADD, "older value"));
112 testModify(entry, hist, 11, true, buildMod(DESCRIPTION, ModificationType.ADD, "new value"));
126 Entry entry = initializeEntry();
128 // load historical from the entry
129 EntryHistorical hist = EntryHistorical.newInstanceFromEntry(entry);
1269 testHistoricalAndFake(Entry entry) argument
1300 testModify(Entry entry, EntryHistorical hist, int date, boolean keepChangeResult, Modification mod) argument
1326 replayModifies( Entry entry, EntryHistorical hist, List<Modification> mods, int date) argument
1342 replayModify( Entry entry, EntryHistorical hist, Modification mod, int date) argument
1420 assertContainsOnlyValues(Entry entry, String attrName, String... expectedValues) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DModifyConflictTest.java82 Entry entry = initializeEntry();
84 // load historical from the entry
85 EntryHistorical hist = EntryHistorical.newInstanceFromEntry(entry);
90 testModify(entry, hist, 10, true, buildMod(DESCRIPTION, ModificationType.REPLACE, "init value"));
97 testModify(entry, hist, 1, false, buildMod(DESCRIPTION, ModificationType.ADD, "older value"));
105 testModify(entry, hist, 2, false, buildMod(DESCRIPTION, ModificationType.ADD, "older value"));
112 testModify(entry, hist, 11, true, buildMod(DESCRIPTION, ModificationType.ADD, "new value"));
126 Entry entry = initializeEntry();
128 // load historical from the entry
129 EntryHistorical hist = EntryHistorical.newInstanceFromEntry(entry);
1269 testHistoricalAndFake(Entry entry) argument
1300 testModify(Entry entry, EntryHistorical hist, int date, boolean keepChangeResult, Modification mod) argument
1326 replayModifies( Entry entry, EntryHistorical hist, List<Modification> mods, int date) argument
1342 replayModify( Entry entry, EntryHistorical hist, Modification mod, int date) argument
1420 assertContainsOnlyValues(Entry entry, String attrName, String... expectedValues) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DPasswordExpirationTimeVirtualAttributeProvider.java77 public Set<AttributeValue> getValues(Entry entry, argument
81 if (!entry.isSubentry() && !entry.isLDAPSubentry())
83 long expirationTime = getPasswordExpirationTime(entry);
124 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
127 return !entry.isSubentry()
128 && !entry.isLDAPSubentry()
129 && getPasswordExpirationTime(entry) != -1;
135 * @param entry LDAP entry
138 getPasswordExpirationTime(Entry entry) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DPasswordExpirationTimeVirtualAttributeProvider.java77 public Set<AttributeValue> getValues(Entry entry, argument
81 if (!entry.isSubentry() && !entry.isLDAPSubentry())
83 long expirationTime = getPasswordExpirationTime(entry);
124 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
127 return !entry.isSubentry()
128 && !entry.isLDAPSubentry()
129 && getPasswordExpirationTime(entry) != -1;
135 * @param entry LDAP entry
138 getPasswordExpirationTime(Entry entry) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DPasswordExpirationTimeVirtualAttributeProvider.java71 public Attribute getValues(Entry entry, VirtualAttributeRule rule) argument
74 if (!entry.isSubentry() && !entry.isLDAPSubentry())
76 long expirationTime = getPasswordExpirationTime(entry);
113 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
116 return !entry.isSubentry()
117 && !entry.isLDAPSubentry()
118 && getPasswordExpirationTime(entry) != -1;
124 * @param entry LDAP entry
127 getPasswordExpirationTime(Entry entry) argument
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/blacklist/
H A DBlacklist.java27 * Blacklists the given entry until its expiry time.
29 * @param entry The blacklist entry.
30 * @throws BlacklistException if the entry cannot be blacklisted for any reason.
32 void blacklist(T entry) throws BlacklistException; argument
35 * Determines whether the entry has previously been blacklisted. <strong>Note:</strong> entries are only
36 * blacklisted until they expire, so a {@code false} result does not mean the entry is valid. Further checks
37 * should be made to establish entry validity.
39 * @param entry The entry t
44 isBlacklisted(T entry) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DVirtualAttribute.java60 // The entry with which this virtual attribute is associated.
61 private final Entry entry; field in class:VirtualAttribute
76 * @param entry
77 * The entry in which this virtual attribute exists.
82 public VirtualAttribute(AttributeType attributeType, Entry entry, argument
86 this.entry = entry;
98 return provider.approximatelyEqualTo(entry, rule, value);
108 return provider.hasValue(entry, rule, value);
119 return provider.hasAllValues(entry, rul
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/util/
H A DTestModifyDNChangeRecordEntry.java85 ModifyDNChangeRecordEntry entry = new ModifyDNChangeRecordEntry(
88 Assert.assertEquals(entry.getDN(), DN.nullDN());
102 ModifyDNChangeRecordEntry entry = new ModifyDNChangeRecordEntry(
105 Assert.assertEquals(entry.getDN(), testDN2);
116 ModifyDNChangeRecordEntry entry =
119 Assert.assertEquals(entry.getChangeOperationType(),
131 ModifyDNChangeRecordEntry entry =
134 Assert.assertEquals(entry.getNewRDN(), newRDN);
145 ModifyDNChangeRecordEntry entry =
149 .assertEquals(entry
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/util/
H A DTestModifyDNChangeRecordEntry.java84 ModifyDNChangeRecordEntry entry = new ModifyDNChangeRecordEntry(
87 Assert.assertEquals(entry.getDN(), DN.nullDN());
101 ModifyDNChangeRecordEntry entry = new ModifyDNChangeRecordEntry(
104 Assert.assertEquals(entry.getDN(), testDN2);
115 ModifyDNChangeRecordEntry entry =
118 Assert.assertEquals(entry.getChangeOperationType(),
130 ModifyDNChangeRecordEntry entry =
133 Assert.assertEquals(entry.getNewRDN(), newRDN);
144 ModifyDNChangeRecordEntry entry =
148 .assertEquals(entry
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DVirtualAttribute.java59 // The entry with which this virtual attribute is associated.
60 private final Entry entry; field in class:VirtualAttribute
75 * @param entry
76 * The entry in which this virtual attribute exists.
81 public VirtualAttribute(AttributeType attributeType, Entry entry, argument
85 this.entry = entry;
97 return provider.approximatelyEqualTo(entry, rule, value);
107 return provider.hasValue(entry, rule, value);
118 return provider.hasAllValues(entry, rul
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DVirtualAttribute.java60 // The entry with which this virtual attribute is associated.
61 private final Entry entry; field in class:VirtualAttribute
76 * @param entry
77 * The entry in which this virtual attribute exists.
82 public VirtualAttribute(AttributeType attributeType, Entry entry, argument
86 this.entry = entry;
98 return provider.approximatelyEqualTo(entry, rule, value);
108 return provider.hasValue(entry, rule, value);
119 return provider.hasAllValues(entry, rul
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/util/
H A DTestModifyDNChangeRecordEntry.java85 ModifyDNChangeRecordEntry entry = new ModifyDNChangeRecordEntry(
88 Assert.assertEquals(entry.getDN(), DN.nullDN());
102 ModifyDNChangeRecordEntry entry = new ModifyDNChangeRecordEntry(
105 Assert.assertEquals(entry.getDN(), testDN2);
116 ModifyDNChangeRecordEntry entry =
119 Assert.assertEquals(entry.getChangeOperationType(),
131 ModifyDNChangeRecordEntry entry =
134 Assert.assertEquals(entry.getNewRDN(), newRDN);
145 ModifyDNChangeRecordEntry entry =
149 .assertEquals(entry
[all...]

Completed in 152 milliseconds

1234567891011>>