Searched defs:add (Results 201 - 225 of 349) sorted by relevance

1234567891011>>

/forgerock/opendj2/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java16 * If applicable, add the following below this CDDL HEADER, with the
287 public void add(byte[] keyBytes, EntryID entryID, int indexID, method in class:IndexOutputBuffer
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java18 * add the following below this CDDL HEADER, with the fields enclosed
266 public void add(byte[] keyBytes, EntryID entryID, int indexID, method in class:IndexOutputBuffer
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java18 * add the following below this CDDL HEADER, with the fields enclosed
266 public void add(byte[] keyBytes, EntryID entryID, int indexID, method in class:IndexOutputBuffer
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java16 * If applicable, add the following below this CDDL HEADER, with the
287 public void add(byte[] keyBytes, EntryID entryID, int indexID, method in class:IndexOutputBuffer
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexOutputBuffer.java18 * add the following below this CDDL HEADER, with the fields enclosed
266 public void add(byte[] keyBytes, EntryID entryID, int indexID, method in class:IndexOutputBuffer
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java20 * If applicable, add the following below the CDDL Header,
112 * Iterator's own remove or add methods, the Iterator will throw a
910 * functionality to add and delete Entry objects.
923 // Method to add an entry to the end (last) of the list
1217 public boolean add(Object o) { method in class:Cache.SynchronizedCollection
1219 return c.add(o);
H A DDataStore.java20 * If applicable, add the following below the CDDL Header,
234 set.add(Integer.toString(count));
349 public String add(Subject adminSubject, String realm, Privilege p) method in class:DataStore
367 searchable.add(Privilege.RESOURCE_TYPE_UUID_ATTRIBUTE + "=" + p.getResourceTypeUuid());
371 searchable.add(HOST_INDEX_KEY + "=" + i);
374 searchable.add(PATH_INDEX_KEY + "=" + i);
377 searchable.add(PATH_PARENT_INDEX_KEY + "=" + i);
380 searchable.add(SUBJECT_INDEX_KEY + "=" + i);
386 setServiceID.add("indexes");
390 set.add(SERIALIZABLE_INDEX_KE
[all...]
H A DOpenSSOIndexStore.java20 * If applicable, add the following below the CDDL Header,
204 public void add(Set<IPrivilege> privileges) method in class:OpenSSOIndexStore
209 add((Privilege)p);
211 add((ReferralPrivilege)p);
216 private void add(Privilege privilege) throws EntitlementException { method in class:OpenSSOIndexStore
221 dataStore.add(adminSubject, realmDN, privilege);
227 private void add(ReferralPrivilege referral) method in class:OpenSSOIndexStore
430 iterator.add(ref);
490 res.add("http*://" +
532 searchIndexes.add(
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java20 * If applicable, add the following below the CDDL Header,
110 * Iterator's own remove or add methods, the Iterator will throw a
787 * functionality to add and delete Entry objects.
802 // Method to add an entry to the end (last) of the list
1097 public boolean add(Object o) { method in class:Cache.SynchronizedCollection
1099 return c.add(o);
/forgerock/openam/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java20 * If applicable, add the following below the CDDL Header,
110 * Iterator's own remove or add methods, the Iterator will throw a
787 * functionality to add and delete Entry objects.
802 // Method to add an entry to the end (last) of the list
1097 public boolean add(Object o) { method in class:Cache.SynchronizedCollection
1099 return c.add(o);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java20 * If applicable, add the following below the CDDL Header,
112 * Iterator's own remove or add methods, the Iterator will throw a
910 * functionality to add and delete Entry objects.
923 // Method to add an entry to the end (last) of the list
1217 public boolean add(Object o) { method in class:Cache.SynchronizedCollection
1219 return c.add(o);
H A DDataStore.java20 * If applicable, add the following below the CDDL Header,
236 set.add(Integer.toString(count));
351 public String add(Subject adminSubject, String realm, Privilege p) method in class:DataStore
373 searchable.add(Privilege.RESOURCE_TYPE_UUID_ATTRIBUTE + "=" + p.getResourceTypeUuid());
377 searchable.add(HOST_INDEX_KEY + "=" + i);
380 searchable.add(PATH_INDEX_KEY + "=" + i);
383 searchable.add(PATH_PARENT_INDEX_KEY + "=" + i);
386 searchable.add(SUBJECT_INDEX_KEY + "=" + i);
392 setServiceID.add("indexes");
396 set.add(SERIALIZABLE_INDEX_KE
[all...]
H A DOpenSSOIndexStore.java20 * If applicable, add the following below the CDDL Header,
208 public void add(Set<IPrivilege> privileges) method in class:OpenSSOIndexStore
213 add((Privilege)p);
215 add((ReferralPrivilege)p);
220 private void add(Privilege privilege) throws EntitlementException { method in class:OpenSSOIndexStore
225 dataStore.add(adminSubject, realmDN, privilege);
231 private void add(ReferralPrivilege referral) method in class:OpenSSOIndexStore
432 iterator.add(ref);
492 res.add("http*://" +
534 searchIndexes.add(
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DModifyOperationTestCase.java16 * If applicable, add the following below this CDDL HEADER, with the
98 List<RawModification> ldapMods = newRawModifications(add(ldapAttr));
100 opList.add(newModifyOperation(null, ByteString.empty(), ldapMods));
101 opList.add(newModifyOperation(noControls, ByteString.empty(), ldapMods));
102 opList.add(newModifyOperation(null, ByteString.valueOf("o=test"), ldapMods));
103 opList.add(newModifyOperation(noControls, ByteString.valueOf("o=test"), ldapMods));
107 opList.add(newModifyOperation(null, ByteString.empty(), ldapMods));
108 opList.add(newModifyOperation(noControls, ByteString.empty(), ldapMods));
109 opList.add(newModifyOperation(null, ByteString.valueOf("o=test"), ldapMods));
110 opList.add(newModifyOperatio
739 private LDAPModification add(LDAPAttribute attr) method in class:ModifyOperationTestCase
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DModifyOperationTestCase.java16 * If applicable, add the following below this CDDL HEADER, with the
98 List<RawModification> ldapMods = newRawModifications(add(ldapAttr));
100 opList.add(newModifyOperation(null, ByteString.empty(), ldapMods));
101 opList.add(newModifyOperation(noControls, ByteString.empty(), ldapMods));
102 opList.add(newModifyOperation(null, ByteString.valueOf("o=test"), ldapMods));
103 opList.add(newModifyOperation(noControls, ByteString.valueOf("o=test"), ldapMods));
107 opList.add(newModifyOperation(null, ByteString.empty(), ldapMods));
108 opList.add(newModifyOperation(noControls, ByteString.empty(), ldapMods));
109 opList.add(newModifyOperation(null, ByteString.valueOf("o=test"), ldapMods));
110 opList.add(newModifyOperatio
739 private LDAPModification add(LDAPAttribute attr) method in class:ModifyOperationTestCase
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/
H A DJEStorage.java16 * If applicable, add the following below this CDDL HEADER, with the
989 public void add(Path e) method in class:JEStorage.JELogFilesIterator
991 throw new UnsupportedOperationException("add() is not implemented");
1089 results.add(TreeName.valueOf(treeName));
1129 unacceptableReasons.add(ERR_BACKEND_CONFIG_CACHE_SIZE_GREATER_THAN_JVM_HEAP.get(
1135 unacceptableReasons.add(ERR_BACKEND_CONFIG_CACHE_PERCENT_GREATER_THAN_JVM_HEAP.get(
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/core/
H A DModifyOperationTestCase.java16 * If applicable, add the following below this CDDL HEADER, with the
126 List<RawModification> ldapMods = newRawModifications(add(ldapAttr));
128 opList.add(newModifyOperation(null, ByteString.empty(), ldapMods));
129 opList.add(newModifyOperation(noControls, ByteString.empty(), ldapMods));
130 opList.add(newModifyOperation(null, ByteString.valueOfUtf8("o=test"), ldapMods));
131 opList.add(newModifyOperation(noControls, ByteString.valueOfUtf8("o=test"), ldapMods));
135 opList.add(newModifyOperation(null, ByteString.empty(), ldapMods));
136 opList.add(newModifyOperation(noControls, ByteString.empty(), ldapMods));
137 opList.add(newModifyOperation(null, ByteString.valueOfUtf8("o=test"), ldapMods));
138 opList.add(newModifyOperatio
762 private LDAPModification add(LDAPAttribute attr) method in class:ModifyOperationTestCase
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DStatusGenericPanel.java18 * add the following below this CDDL HEADER, with the fields enclosed
275 super.add(cardPanel, gbc);
277 cardPanel.add(mainPanel, MAIN_PANEL);
283 messagePanel.add(message, gbc);
284 cardPanel.add(messagePanel, MESSAGE_PANEL);
296 public void add(Component comp, Object constraints) method in class:StatusGenericPanel
298 mainPanel.add(comp, constraints);
313 add(Box.createVerticalGlue(), gbc2);
368 p.add(errorPane, gbc);
399 * Commodity method used to add line
407 protected void add(JLabel[] labels, Component[] comps, JLabel[] inlineHelp, method in class:StatusGenericPanel
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DStatusGenericPanel.java16 * If applicable, add the following below this CDDL HEADER, with the
274 super.add(cardPanel, gbc);
276 cardPanel.add(mainPanel, MAIN_PANEL);
282 messagePanel.add(message, gbc);
283 cardPanel.add(messagePanel, MESSAGE_PANEL);
295 public void add(Component comp, Object constraints) method in class:StatusGenericPanel
297 mainPanel.add(comp, constraints);
312 add(Box.createVerticalGlue(), gbc2);
367 p.add(errorPane, gbc);
398 * Commodity method used to add line
406 protected void add(JLabel[] labels, Component[] comps, JLabel[] inlineHelp, method in class:StatusGenericPanel
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DStatusGenericPanel.java18 * add the following below this CDDL HEADER, with the fields enclosed
275 super.add(cardPanel, gbc);
277 cardPanel.add(mainPanel, MAIN_PANEL);
283 messagePanel.add(message, gbc);
284 cardPanel.add(messagePanel, MESSAGE_PANEL);
296 public void add(Component comp, Object constraints) method in class:StatusGenericPanel
298 mainPanel.add(comp, constraints);
313 add(Box.createVerticalGlue(), gbc2);
368 p.add(errorPane, gbc);
399 * Commodity method used to add line
407 protected void add(JLabel[] labels, Component[] comps, JLabel[] inlineHelp, method in class:StatusGenericPanel
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DStatusGenericPanel.java16 * If applicable, add the following below this CDDL HEADER, with the
274 super.add(cardPanel, gbc);
276 cardPanel.add(mainPanel, MAIN_PANEL);
282 messagePanel.add(message, gbc);
283 cardPanel.add(messagePanel, MESSAGE_PANEL);
295 public void add(Component comp, Object constraints) method in class:StatusGenericPanel
297 mainPanel.add(comp, constraints);
312 add(Box.createVerticalGlue(), gbc2);
367 p.add(errorPane, gbc);
398 * Commodity method used to add line
406 protected void add(JLabel[] labels, Component[] comps, JLabel[] inlineHelp, method in class:StatusGenericPanel
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DStatusGenericPanel.java18 * add the following below this CDDL HEADER, with the fields enclosed
275 super.add(cardPanel, gbc);
277 cardPanel.add(mainPanel, MAIN_PANEL);
283 messagePanel.add(message, gbc);
284 cardPanel.add(messagePanel, MESSAGE_PANEL);
296 public void add(Component comp, Object constraints) method in class:StatusGenericPanel
298 mainPanel.add(comp, constraints);
313 add(Box.createVerticalGlue(), gbc2);
368 p.add(errorPane, gbc);
399 * Commodity method used to add line
407 protected void add(JLabel[] labels, Component[] comps, JLabel[] inlineHelp, method in class:StatusGenericPanel
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DStatusGenericPanel.java16 * If applicable, add the following below this CDDL HEADER, with the
278 super.add(cardPanel, gbc);
280 cardPanel.add(mainPanel, MAIN_PANEL);
286 messagePanel.add(message, gbc);
287 cardPanel.add(messagePanel, MESSAGE_PANEL);
303 public void add(final Component comp, final Object constraints) method in class:StatusGenericPanel
305 mainPanel.add(comp, constraints);
322 add(Box.createVerticalGlue(), gbc2);
381 p.add(errorPane, gbc);
413 * Commodity method used to add line
427 protected void add(final JLabel[] labels, final Component[] comps, final JLabel[] inlineHelp, final Container panel, method in class:StatusGenericPanel
[all...]
/forgerock/opendj-b2.6/tests/staf-tests/shared/java/ldapjdk/
H A Dldapjdk.jarMETA-INF/ META-INF/MANIFEST.MF com/netscape/sasl/mechanisms/SaslExternal.class SaslExternal.java ...
/forgerock/opendj2/tests/staf-tests/shared/java/ldapjdk/
H A Dldapjdk.jarMETA-INF/ META-INF/MANIFEST.MF com/netscape/sasl/mechanisms/SaslExternal.class SaslExternal.java ...

Completed in 431 milliseconds

1234567891011>>