Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit a9631764 authored by Szymon Knitter's avatar Szymon Knitter
Browse files

Merge branch 'feature/SIMPL-sonar' into 'develop'

SIMPL-sonar

See merge request !11
parents 419f02f3 cad32a3e
No related branches found
No related tags found
2 merge requests!11SIMPL-sonar,!10Release 0.0.1
Pipeline #232599 passed
......@@ -2,6 +2,7 @@ package eu.simpl.simpl_stubs.service;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
......@@ -11,6 +12,7 @@ import java.io.IOException;
import java.io.InputStream;
@Service
@Slf4j
public class SignerService {
@Value("${template-location}")
......@@ -23,6 +25,7 @@ public class SignerService {
}
public Object signContract(Object body) {
log.debug("Signing contract for given body {}", body);
return getResponseData(templatePath);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment