@GET
@Path("currencyMatrices/{objectId}/{versionCorrection}")
public Response getMatrixByObjectIdentifier(@PathParam("objectId") String objectIdStr, @PathParam("versionCorrection") String versionCorrectionStr) {
final ObjectId objectId = ObjectId.parse(objectIdStr);
final VersionCorrection versionCorrection = VersionCorrection.parse(versionCorrectionStr);
final CurrencyMatrix result = getCurrencyMatrixSource().get(objectId, versionCorrection);
return responseOkFudge(result);
}