Skip to content
Snippets Groups Projects
Commit c034d2c8 authored by OZGCloud's avatar OZGCloud
Browse files

WIP: OZG-6275 Laden von Antworten disabled

parent 711e4844
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,8 @@ public class MukPostfachRemoteService implements PostfachRemoteService { ...@@ -44,7 +44,8 @@ public class MukPostfachRemoteService implements PostfachRemoteService {
@Override @Override
public void sendMessage(PostfachNachricht postfachNachricht) { public void sendMessage(PostfachNachricht postfachNachricht) {
LOG.info("Sending PostfachNachricht with id {} and messageId {} to ElsterTransferService.", postfachNachricht.getId(), postfachNachricht.getMessageId()); LOG.info("Sending PostfachNachricht with id {} and messageId {} to ElsterTransferService.", postfachNachricht.getId(),
postfachNachricht.getMessageId());
try { try {
var response = elsterTransferService.send(postfachNachricht); var response = elsterTransferService.send(postfachNachricht);
LOG.info("Submitted BereitstellungsAuftrag with id {}", response.getId()); LOG.info("Submitted BereitstellungsAuftrag with id {}", response.getId());
...@@ -55,7 +56,9 @@ public class MukPostfachRemoteService implements PostfachRemoteService { ...@@ -55,7 +56,9 @@ public class MukPostfachRemoteService implements PostfachRemoteService {
@Override @Override
public Stream<PostfachNachricht> getAllMessages() { public Stream<PostfachNachricht> getAllMessages() {
return elsterTransferService.getAllMessages(); LOG.warn("Loading of PostfachNachrichten disabled right now.");
return Stream.of();
//return elsterTransferService.getAllMessages();
} }
@Override @Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment