Searched defs:entryUUIDType (Results 1 - 12 of 12) sorted by relevance

/forgerock/opendj-b2.6/src/server/org/opends/server/plugins/
H A DEntryUUIDPlugin.java74 private final AttributeType entryUUIDType; field in class:EntryUUIDPlugin
110 entryUUIDType = at;
167 List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
180 Attribute uuidAttr = Attributes.create(entryUUIDType,
181 AttributeValues.create(entryUUIDType,
185 entry.putAttribute(entryUUIDType, uuidList);
206 List<Attribute> uuidList = operationalAttributes.get(entryUUIDType);
215 Attribute uuidAttr = Attributes.create(entryUUIDType,
216 AttributeValues.create(entryUUIDType,uuid.toString()));
222 addOperation.setAttribute(entryUUIDType, uuidLis
[all...]
/forgerock/opendj2/src/server/org/opends/server/plugins/
H A DEntryUUIDPlugin.java73 private final AttributeType entryUUIDType; field in class:EntryUUIDPlugin
109 entryUUIDType = at;
166 List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
179 Attribute uuidAttr = Attributes.create(entryUUIDType,
180 AttributeValues.create(entryUUIDType,
184 entry.putAttribute(entryUUIDType, uuidList);
205 List<Attribute> uuidList = operationalAttributes.get(entryUUIDType);
214 Attribute uuidAttr = Attributes.create(entryUUIDType,
215 AttributeValues.create(entryUUIDType,uuid.toString()));
221 addOperation.setAttribute(entryUUIDType, uuidLis
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/plugins/
H A DEntryUUIDPlugin.java74 private final AttributeType entryUUIDType; field in class:EntryUUIDPlugin
110 entryUUIDType = at;
167 List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
180 Attribute uuidAttr = Attributes.create(entryUUIDType,
181 AttributeValues.create(entryUUIDType,
185 entry.putAttribute(entryUUIDType, uuidList);
206 List<Attribute> uuidList = operationalAttributes.get(entryUUIDType);
215 Attribute uuidAttr = Attributes.create(entryUUIDType,
216 AttributeValues.create(entryUUIDType,uuid.toString()));
222 addOperation.setAttribute(entryUUIDType, uuidLis
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/plugins/
H A DEntryUUIDPlugin.java74 private final AttributeType entryUUIDType; field in class:EntryUUIDPlugin
110 entryUUIDType = at;
167 List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
180 Attribute uuidAttr = Attributes.create(entryUUIDType,
181 AttributeValues.create(entryUUIDType,
185 entry.putAttribute(entryUUIDType, uuidList);
206 List<Attribute> uuidList = operationalAttributes.get(entryUUIDType);
215 Attribute uuidAttr = Attributes.create(entryUUIDType,
216 AttributeValues.create(entryUUIDType,uuid.toString()));
222 addOperation.setAttribute(entryUUIDType, uuidLis
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/plugins/
H A DEntryUUIDPlugin.java73 private final AttributeType entryUUIDType; field in class:EntryUUIDPlugin
109 entryUUIDType = at;
166 List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
179 Attribute uuidAttr = Attributes.create(entryUUIDType,
180 AttributeValues.create(entryUUIDType,
184 entry.putAttribute(entryUUIDType, uuidList);
205 List<Attribute> uuidList = operationalAttributes.get(entryUUIDType);
214 Attribute uuidAttr = Attributes.create(entryUUIDType,
215 AttributeValues.create(entryUUIDType,uuid.toString()));
221 addOperation.setAttribute(entryUUIDType, uuidLis
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/plugins/
H A DEntryUUIDPlugin.java73 private final AttributeType entryUUIDType; field in class:EntryUUIDPlugin
109 entryUUIDType = at;
157 List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
170 uuidList = Attributes.createAsList(entryUUIDType, uuid.toString());
171 entry.putAttribute(entryUUIDType, uuidList);
189 List<Attribute> uuidList = operationalAttributes.get(entryUUIDType);
198 uuidList = Attributes.createAsList(entryUUIDType, uuid.toString());
201 addOperation.setAttribute(entryUUIDType, uuidList);
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProviderTestCase.java66 private AttributeType entryUUIDType; field in class:EntryUUIDVirtualAttributeProviderTestCase
81 entryUUIDType = DirectoryServer.getAttributeType("entryuuid", false);
82 assertNotNull(entryUUIDType);
131 assertTrue(e.hasAttribute(entryUUIDType));
133 List<Attribute> attrList = e.getAttribute(entryUUIDType);
140 assertTrue(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
175 assertTrue(e.hasAttribute(entryUUIDType));
177 List<Attribute> attrList = e.getAttribute(entryUUIDType);
184 assertFalse(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
203 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, entryUUIDType);
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProviderTestCase.java65 private AttributeType entryUUIDType; field in class:EntryUUIDVirtualAttributeProviderTestCase
80 entryUUIDType = DirectoryServer.getAttributeType("entryuuid", false);
81 assertNotNull(entryUUIDType);
130 assertTrue(e.hasAttribute(entryUUIDType));
132 List<Attribute> attrList = e.getAttribute(entryUUIDType);
139 assertTrue(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
174 assertTrue(e.hasAttribute(entryUUIDType));
176 List<Attribute> attrList = e.getAttribute(entryUUIDType);
183 assertFalse(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
202 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, entryUUIDType);
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProviderTestCase.java66 private AttributeType entryUUIDType; field in class:EntryUUIDVirtualAttributeProviderTestCase
81 entryUUIDType = DirectoryServer.getAttributeType("entryuuid", false);
82 assertNotNull(entryUUIDType);
131 assertTrue(e.hasAttribute(entryUUIDType));
133 List<Attribute> attrList = e.getAttribute(entryUUIDType);
140 assertTrue(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
175 assertTrue(e.hasAttribute(entryUUIDType));
177 List<Attribute> attrList = e.getAttribute(entryUUIDType);
184 assertFalse(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
203 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, entryUUIDType);
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProviderTestCase.java65 private AttributeType entryUUIDType; field in class:EntryUUIDVirtualAttributeProviderTestCase
80 entryUUIDType = DirectoryServer.getAttributeType("entryuuid", false);
81 assertNotNull(entryUUIDType);
130 assertTrue(e.hasAttribute(entryUUIDType));
132 List<Attribute> attrList = e.getAttribute(entryUUIDType);
139 assertTrue(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
174 assertTrue(e.hasAttribute(entryUUIDType));
176 List<Attribute> attrList = e.getAttribute(entryUUIDType);
183 assertFalse(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
202 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, entryUUIDType);
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProviderTestCase.java66 private AttributeType entryUUIDType; field in class:EntryUUIDVirtualAttributeProviderTestCase
81 entryUUIDType = DirectoryServer.getAttributeType("entryuuid", false);
82 assertNotNull(entryUUIDType);
131 assertTrue(e.hasAttribute(entryUUIDType));
133 List<Attribute> attrList = e.getAttribute(entryUUIDType);
140 assertTrue(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
175 assertTrue(e.hasAttribute(entryUUIDType));
177 List<Attribute> attrList = e.getAttribute(entryUUIDType);
184 assertFalse(a.contains(AttributeValues.create(entryUUIDType, uuidString)));
203 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, entryUUIDType);
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProviderTestCase.java59 private AttributeType entryUUIDType; field in class:EntryUUIDVirtualAttributeProviderTestCase
74 entryUUIDType = DirectoryServer.getAttributeTypeOrNull("entryuuid");
75 assertNotNull(entryUUIDType);
123 assertTrue(e.hasAttribute(entryUUIDType));
125 List<Attribute> attrList = e.getAttribute(entryUUIDType);
159 assertTrue(e.hasAttribute(entryUUIDType));
161 List<Attribute> attrList = e.getAttribute(entryUUIDType);
187 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, entryUUIDType);
205 ExtensionTestUtils.testSearchNoAttrs(entryDN, entryUUIDType);
223 ExtensionTestUtils.testSearchAllUserAttrs(entryDN, entryUUIDType);
[all...]

Completed in 71 milliseconds