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

OZG-3371 add new interface and bayernid empty implementation

Sub-task: OZG-3494
parent 6be88df9
Branches
Tags 2.11.0
No related merge requests found
package de.itvsh.ozg.mail.postfach;
import java.util.stream.Stream;
public interface PostfachRemoteService {
void sendMessage(PostfachNachricht nachricht);
Stream<PostfachNachricht> getAllMessages();
}
\ No newline at end of file
package de.itvsh.ozg.mail.postfach.bayernid;
import java.util.stream.Stream;
import org.apache.commons.lang3.NotImplementedException;
import de.itvsh.ozg.mail.postfach.PostfachNachricht;
import de.itvsh.ozg.mail.postfach.PostfachRemoteService;
public class BayernIdPostfachRemoteService implements PostfachRemoteService {
@Override
public void sendMessage(PostfachNachricht nachricht) {
throw new NotImplementedException("Not yet implemented.");
}
@Override
public Stream<PostfachNachricht> getAllMessages() {
throw new NotImplementedException("Not yet implemented.");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment