ArgumentChecker.notNull(extractor, "extractor");
s_logger.debug("getByOidInstants {}", objectId);
Timer.Context context = _getByOidInstantsTimer.time();
try {
final VersionCorrection vc = (versionCorrection.containsLatest() ? versionCorrection.withLatestFixed(now()) : versionCorrection);
final DbMapSqlParameterSource args = argsGetByOidInstants(objectId, vc);
final NamedParameterJdbcOperations namedJdbc = getDbConnector().getJdbcTemplate();
final String sql = getElSqlBundle().getSql("GetByOidInstants", args);
final List<D> docs = namedJdbc.query(sql, args, extractor);
if (docs.isEmpty()) {