@RequestMapping("/blitline/{imageIdentifier}")
public BlitlinePostResults runJob(
@PathVariable String imageIdentifier,
@RequestParam(defaultValue = BLITLINE_SAMPLE_IMAGE_URL) String sourceImage
) {
BlitlineImageJob job = bis.jobBuilder().fromUrl(sourceImage).apply(
Blitline.cropToSquare().thenApply(
Blitline.sepiaFilter().thenApply(
Blitline.rotateBy(90.).andSaveResult(imageIdentifier)
)
)