Searched refs:fullId (Results 1 - 9 of 9) sorted by relevance

/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/
H A DTableHandler.java52 * @param fullId the qualified identifier of the object to retrieve from the object set.
62 public abstract ResourceResponse read(String fullId, String type, argument
72 * @param fullId the client-generated identifier to use, or {@code null} if server-generated identifier is requested.
84 public abstract void create(String fullId, String type, String localId, argument
97 * @param fullId the identifier of the object to be put, or {@code null} to request a generated identifier.
112 public abstract void update(String fullId, String type, String localId, argument
119 * @param fullId the identifier of the object to be deleted.
132 public abstract void delete(String fullId, String type, String localId, 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
98 logger.debug("Update with fullid {}", fullId);
109 rs = readForUpdate(fullId, type, localId, connection);
114 fullId, existingRev, dbId, objectTypeDbId);
135 updateStatement, fullId, newLocalId, newRev, objString, dbId, existingRev);
143 logger.trace("Updated rows: {} for {}", updateCount, fullId);
152 logger.trace("Populating prepared statement {} for {} {} {}", deletePropStatement, fullId, type, localId);
157 logger.trace("Deleted child rows: {} for: {}", deleteCount, fullId);
158 writeValueProperties(fullId, dbId, localId, jv, connection);
H A DGenericTableHandler.java215 public ResourceResponse read(String fullId, String type, String localId, Connection connection) argument
224 logger.trace("Populating prepared statement {} for {}", readStatement, fullId);
235 logger.debug(" full id: {}, rev: {}, obj {}", fullId, rev, resultMap);
239 "Object " + fullId + " not found in " + type);
251 public void create(String fullId, String type, String localId, Map<String, Object> obj, Connection connection) argument
260 logger.debug("Create with fullid {}", fullId);
278 throw new InternalServerErrorException("Object creation for " + fullId + " failed to retrieve an assigned ID from the DB.");
282 logger.debug("Created object for id {} with rev {}", fullId, rev);
284 writeValueProperties(fullId, dbId, localId, jv, connection);
293 * @param fullId th
300 writeValueProperties(String fullId, long dbId, String localId, JsonValue value, Connection connection) 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
199 logger.debug("Populating prepared statement {} for {}", readStatement, fullId);
208 logger.debug(" full id: {}, rev: {}, obj {}", fullId, rev, resultValue);
211 throw new NotFoundException("Object " + fullId + " not found in " + type);
230 * @param fullId
244 ResultSet readForUpdate(String fullId, String type, String localId, Connection connection) argument
252 logger.trace("Populating prepared statement {} for {}", readForUpdateStatement, fullId);
258 logger.debug("Read for update full id: {}", fullId);
263 throw new NotFoundException("Object " + fullId + " not found in " + type);
278 public void create(String fullId, Strin argument
299 create(String fullId, String type, String localId, Map<String, Object> obj, Connection connection, PreparedStatement createStatement, boolean batchCreate) argument
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
76 logger.debug("Create with fullid {}", fullId);
94 throw new InternalServerErrorException("Object creation for " + fullId + " failed to retrieve an assigned ID from the DB.");
100 logger.debug("Created object for id {} with rev {}", fullId, rev);
102 writeValueProperties(fullId, dbId, localId, jv, connection);
H A DJDBCRepoService.java309 final String fullId = type + "/" + localId;
328 handler.create(fullId, type, localId, obj.asMap(), connection);
331 logger.debug("Commited created object for id: {}", fullId);
336 fullId, ex.getErrorCode(), ex.getSQLState(), ex);
358 logger.debug("ResourceException in create of {}", fullId, ex);
362 logger.debug("IO Exception in create of {}", fullId, ex);
366 logger.debug("Runtime Exception in create of {}", fullId, ex);
679 String fullId = request.getResourcePath();
680 String type = trimStartingSlash(fullId);
681 logger.trace("Full id: {} Extracted type: {}", fullId, typ
[all...]
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/commons/
H A DObjectClassInfoHelper.java177 ResourcePath fullId = request.getResourcePathObject();
180 // If this is a Create request, construct the fullId from a concatentation
195 fullId = fullId.concat(newResourceId);
198 return urlDecode(fullId.toString());
/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/
H A DOrientDBRepoService.java275 String fullId = request.getResourcePathObject().child(localId).toString();
286 logger.trace("Created doc for id: {} to save {}", fullId, newDoc);
290 logger.debug("Completed create for id: {} revision: {}", fullId, newDoc.getVersion());
291 logger.trace("Create payload for id: {} doc: {}", fullId, newDoc);
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DObjectMapping.java586 final String fullId = LazyObjectAccessor.qualifiedId(targetObjectSet, id);
590 LOGGER.trace("Update target object {}", fullId);
591 UpdateRequest ur = Requests.newUpdateRequest(fullId, target);

Completed in 56 milliseconds