Searched refs:localId (Results 1 - 14 of 14) sorted by relevance

/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DLazyObjectAccessor.java47 private final String localId; // The local part of the id field in class:LazyObjectAccessor
53 * @param localId the unqualified part of the object id
57 String localId, JsonValue value) {
61 this.localId = localId;
69 * @param localId the unqualified part of the object id
72 String localId) {
75 this.localId = localId;
90 object = rawReadObject(service.getContext(), service.getConnectionFactory(), componentContext, localId);
56 LazyObjectAccessor(SynchronizationService service, String componentContext, String localId, JsonValue value) argument
71 LazyObjectAccessor(SynchronizationService service, String componentContext, String localId) argument
160 qualifiedId(String componentContext, String localId) argument
[all...]
H A DReconciliationService.java173 final String localId = request.getResourcePathObject().leaf();
175 if (reconRuns.containsKey(localId)) {
176 return newResourceResponse(localId, null, new JsonValue(reconRuns.get(localId).getSummary())).asPromise();
184 equalTo(new JsonPointer(ReconAuditEventBuilder.RECON_ID), localId),
193 return new NotFoundException("Reconciliation with id " + localId + " not found." ).asPromise();
196 response = newResourceResponse(localId, null,
/forgerock/openidm-v4/openidm-provisioner/src/main/java/org/forgerock/openidm/provisioner/
H A DId.java76 private String localId = null; field in class:Id
99 public Id(String systemName, String objectType, String localId) throws ResourceException { argument
106 if (StringUtils.isBlank(localId)) {
113 this.localId = URLDecoder.decode(localId, CHARACTER_ENCODING_UTF_8);
138 localId = URLDecoder.decode(segments[2], CHARACTER_ENCODING_UTF_8);
158 return localId;
170 if (StringUtils.isBlank(localId)) {
172 TRACE.error("Unqualified id: systemName={}, objectType={}, localId={}",
173 new Object[] { systemName, objectType, localId }, e
[all...]
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/
H A DTableHandler.java54 * @param localId the identifier without the qualifier of the object to retrieve
63 String localId, Connection connection)
74 * @param localId
84 public abstract void create(String fullId, String type, String localId, argument
99 * @param localId
112 public abstract void update(String fullId, String type, String localId, argument
121 * @param localId
132 public abstract void delete(String fullId, String type, String localId, argument
62 read(String fullId, String type, String localId, Connection connection) argument
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DMSSQLTableHandler.java96 public void update(String fullId, String type, String localId, String rev, Map<String, Object> obj, Connection connection) argument
109 rs = readForUpdate(fullId, type, localId, connection);
126 if (newLocalId != null && !localId.equals(newLocalId)) {
127 logger.debug("Object identifier is changing from " + localId + " to " + newLocalId);
129 newLocalId = localId; // If it hasn't changed, use the existing ID
152 logger.trace("Populating prepared statement {} for {} {} {}", deletePropStatement, fullId, type, localId);
154 deletePropStatement.setString(2, localId);
158 writeValueProperties(fullId, dbId, localId, jv, connection);
H A DGenericTableHandler.java215 public ResourceResponse read(String fullId, String type, String localId, Connection connection) argument
226 readStatement.setString(2, localId);
236 return newResourceResponse(localId, rev, new JsonValue(resultMap));
251 public void create(String fullId, String type, String localId, Map<String, Object> obj, Connection connection) argument
262 obj.put("_id", localId); // Save the id in the object
267 queryMap.get(QueryDefinition.CREATEQUERYSTR), typeId, localId, rev, objString);
269 createStatement.setString(2, localId);
284 writeValueProperties(fullId, dbId, localId, jv, connection);
295 * @param localId the local identifier of the resource these properties belong to
300 void writeValueProperties(String fullId, long dbId, String localId, JsonValu argument
337 writeValueProperties(String fullId, long dbId, String localId, JsonValue value, Connection connection, PreparedStatement propCreateStatement, int batchingCount) argument
496 readForUpdate(String fullId, String type, String localId, Connection connection) argument
528 update(String fullId, String type, String localId, String rev, Map<String, Object> obj, Connection connection) argument
600 delete(String fullId, String type, String localId, String rev, Connection connection) argument
[all...]
H A DMappedTableHandler.java190 public ResourceResponse read(String fullId, String type, String localId, Connection connection) argument
200 readStatement.setString(1, localId);
209 result = newResourceResponse(localId, rev.asString(), resultValue);
234 * @param localId
244 ResultSet readForUpdate(String fullId, String type, String localId, Connection connection) argument
253 readForUpdateStatement.setString(1, localId);
278 public void create(String fullId, String type, String localId, Map<String, Object> obj, argument
283 create(fullId, type, localId, obj, connection, createStatement, false);
299 protected void create(String fullId, String type, String localId, Map<String, Object> obj, argument
305 obj.put("_id", localId); // Sav
369 update(String fullId, String type, String localId, String rev, Map<String, Object> obj, Connection connection) argument
436 delete(String fullId, String type, String localId, String rev, Connection connection) argument
[all...]
H A DOracleTableHandler.java62 public void create(String fullId, String type, String localId, Map<String, Object> obj, Connection connection) argument
78 obj.put("_id", localId); // Save the id in the object
83 createStatement, typeId, localId, rev, objString);
85 createStatement.setString(2, localId);
102 writeValueProperties(fullId, dbId, localId, jv, connection);
H A DJDBCRepoService.java255 final String localId = request.getResourcePathObject().leaf();
268 result = handler.read(request.getResourcePath(), type, localId, connection);
306 final String localId = (request.getNewResourceId() == null || request.getNewResourceId().isEmpty())
309 final String fullId = type + "/" + localId;
328 handler.create(fullId, type, localId, obj.asMap(), connection);
398 final String localId = request.getResourcePathObject().leaf();
423 handler.update(request.getResourcePath(), type, localId, rev, obj, connection);
498 final String localId = request.getResourcePathObject().leaf();
518 result = handler.read(request.getResourcePath(), type, localId, connection);
520 handler.delete(request.getResourcePath(), type, localId, reques
[all...]
/forgerock/openidm-v4/openidm-audit/src/main/java/org/forgerock/openidm/audit/impl/
H A DAuditLogger.java92 * @param localId the id of the object to log
97 Map<String, Object> read(Context context, String type, String localId) throws ResourceException; argument
/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/
H A DOrientDBRepoService.java229 final String localId = request.getResourcePathObject().leaf();
233 ODocument doc = predefinedQueries.getByID(localId, type, db);
235 throw new NotFoundException("Object " + localId + " not found in " + type);
270 final String localId = (request.getNewResourceId() == null || "".equals(request.getNewResourceId()))
275 String fullId = request.getResourcePathObject().child(localId).toString();
280 obj.put(DocumentUtil.TAG_ID, localId);
340 final String localId = request.getResourcePathObject().leaf();
351 ODocument existingDoc = predefinedQueries.getByID(localId, type, db);
412 final String localId = request.getResourcePathObject().leaf();
418 ODocument existingDoc = predefinedQueries.getByID(localId, typ
[all...]
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/arch/
H A DManager.java640 String localId = getConfigurationKey(id);
643 staticKeySet.add(localId);
647 + id + ", " + globalId + ", " + localId);
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/federation/cli/
H A DImportBulkFederationData.java210 String localId = null;
214 localId = getLocalEntityId(io.readLine());
238 remoteEntityId = localId;
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/federation/cli/
H A DImportBulkFederationData.java210 String localId = null;
214 localId = getLocalEntityId(io.readLine());
238 remoteEntityId = localId;

Completed in 58 milliseconds