Searched refs:update (Results 151 - 175 of 786) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/router/
H A DCTSPersistentStoreProxy.java75 public void update(Token token) throws CoreTokenException { method in class:CTSPersistentStoreProxy
76 CTSHolder.get().update(token);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/delegates/
H A DMaintenanceDelegate.js50 url: "/update/log/?_queryFilter=true",
57 url: "/update?_action=available",
64 url: "/update?_action=getLicense&archive=" + archive,
71 url: "/update?_action=preview&archive=" + archive,
76 obj.update = function (archive) {
78 url: "/update?_action=update&archive=" + archive,
85 url: "/update?_action=lastUpdateId",
99 url: "/update/log/" + logId,
106 url: "/update
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/
H A DCTSPersistentStore.java124 * @param token Non null Token to update.
129 void update(Token token) throws CoreTokenException; method in interface:CTSPersistentStore
139 * @param token Non null Token to update.
145 void update(Token token, Options options) throws CoreTokenException; method in interface:CTSPersistentStore
155 * @param token Non null Token to update.
169 * @param token Non null Token to update.
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/sm/datalayer/impl/tasks/
H A DUpdateTaskTest.java56 given(mockAdapter.update(mockPrevious, mockUpdated, options)).willReturn(mockReturned);
62 verify(mockAdapter).update(eq(mockPrevious), eq(mockUpdated), eq(options));
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/services/
H A DEditServiceSubSchemaView.js46 (values) => ServicesService.type.subSchema.instance.update(
H A DEditServiceView.js38 updateInstance: (values) => ServicesService.instance.update(realmPath, type, values),
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/plugin/
H A DRemotePendingChanges.java108 * @param update The LDAPUpdateMsg that was received from the replication
111 public synchronized void putRemoteUpdate(LDAPUpdateMsg update) argument
113 ChangeNumber changeNumber = update.getChangeNumber();
115 update));
119 * Mark an update message as committed.
121 * @param changeNumber The ChangeNumber of the update message that must be
138 state.update(firstChangeNumber);
154 * Get the first update in the list that have some dependencies cleared.
H A DReplLDIFOutputStream.java116 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DBackupManager.java947 mac.update(getBytes(name));
952 digest.update(getBytes(name));
962 mac.update(getBytes(line));
967 digest.update(getBytes(line));
1000 mac.update(getBytes(name));
1005 digest.update(getBytes(name));
1018 mac.update(buffer, 0, bytesRead);
1023 digest.update(buffer, 0, bytesRead);
1102 mac.update(getBytes(file.getName()));
1107 digest.update(getByte
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/plugin/
H A DPendingChange.java143 dependencyState.update(csn);
H A DPersistentServerState.java100 * @return a boolean indicating if the update was meaningful.
102 boolean update(CSN csn) method in class:PersistentServerState
104 return state.update(csn);
229 * @param resultEntry The entry that should be used to update this
241 update(new CSN(value.toString()));
270 * Run a modify operation to update the entry whose DN is given as
390 update(dbMaxCSN);
H A DRemotePendingChanges.java97 * @param update The LDAPUpdateMsg that was received from the replication
99 * @return {@code false} if the update was already registered in the pending
102 public synchronized boolean putRemoteUpdate(LDAPUpdateMsg update) argument
104 CSN csn = update.getCSN();
106 new PendingChange(csn, null, update)) == null;
110 * Mark an update message as committed.
113 * The CSN of the update message that must be set as committed.
131 state.update(firstCSN);
148 * Get the first update in the list that have some dependencies cleared.
H A DReplLDIFOutputStream.java115 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DBackupManager.java1037 mac.update(getBytes(name));
1042 digest.update(getBytes(name));
1052 mac.update(getBytes(line));
1057 digest.update(getBytes(line));
1090 mac.update(getBytes(name));
1095 digest.update(getBytes(name));
1108 mac.update(buffer, 0, bytesRead);
1113 digest.update(buffer, 0, bytesRead);
1192 mac.update(getBytes(file.getName()));
1197 digest.update(getByte
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/replication/common/
H A DChangeNumberGeneratorTest.java89 state.update(cn1);
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DBackupManager.java1037 mac.update(getBytes(name));
1042 digest.update(getBytes(name));
1052 mac.update(getBytes(line));
1057 digest.update(getBytes(line));
1090 mac.update(getBytes(name));
1095 digest.update(getBytes(name));
1108 mac.update(buffer, 0, bytesRead);
1113 digest.update(buffer, 0, bytesRead);
1192 mac.update(getBytes(file.getName()));
1197 digest.update(getByte
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/plugin/
H A DRemotePendingChanges.java108 * @param update The LDAPUpdateMsg that was received from the replication
110 * @return {@code false} if the update was already registered in the pending
113 public synchronized boolean putRemoteUpdate(LDAPUpdateMsg update) argument
115 ChangeNumber changeNumber = update.getChangeNumber();
117 new PendingChange(changeNumber, null, update)) == null;
121 * Mark an update message as committed.
123 * @param changeNumber The ChangeNumber of the update message that must be
140 state.update(firstChangeNumber);
156 * Get the first update in the list that have some dependencies cleared.
H A DReplLDIFOutputStream.java116 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/replication/common/
H A DChangeNumberGeneratorTest.java89 state.update(cn1);
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/common/
H A DChangeNumberGeneratorTest.java89 state.update(cn1);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/plugin/
H A DRemotePendingChanges.java108 * @param update The LDAPUpdateMsg that was received from the replication
111 public synchronized void putRemoteUpdate(LDAPUpdateMsg update) argument
113 ChangeNumber changeNumber = update.getChangeNumber();
115 update));
119 * Mark an update message as committed.
121 * @param changeNumber The ChangeNumber of the update message that must be
138 state.update(firstChangeNumber);
154 * Get the first update in the list that have some dependencies cleared.
H A DReplLDIFOutputStream.java116 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DBackupManager.java947 mac.update(getBytes(name));
952 digest.update(getBytes(name));
962 mac.update(getBytes(line));
967 digest.update(getBytes(line));
1000 mac.update(getBytes(name));
1005 digest.update(getBytes(name));
1018 mac.update(buffer, 0, bytesRead);
1023 digest.update(buffer, 0, bytesRead);
1102 mac.update(getBytes(file.getName()));
1107 digest.update(getByte
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DPendingChange.java143 dependencyState.update(csn);
H A DPersistentServerState.java100 * @return a boolean indicating if the update was meaningful.
102 boolean update(CSN csn) method in class:PersistentServerState
104 return state.update(csn);
229 * @param resultEntry The entry that should be used to update this
241 update(new CSN(value.toString()));
270 * Run a modify operation to update the entry whose DN is given as
390 update(dbMaxCSN);

Completed in 86 milliseconds

1234567891011>>