in src/main/java/com/epam/digital/data/platform/excerpt/api/service/DigitalSignatureService.java [70:80]
public FormDataDto saveSignature(String key) {
log.info("Store Signature to Ceph");
var value =
lowcodeFormDataStorageService
.getFormData(key)
.orElseThrow(
() -> new DigitalSignatureNotFoundException(
"Signature does not exist in ceph bucket. Key: " + key));
datafactoryExcerptDataStorageService.putFormData(key, value);
return value;
}