Skip to content

ConnectionHandler

Thomas Schwotzer edited this page Aug 20, 2021 · 8 revisions

There is a lot talking about our ASAP encounter. It is quite prosaic on developer level. There is an interface ASAPConnectionHandler that defines variants that defines variants of a single method. Here is the full version. Variants just use defaults.

public interface ASAPConnectionHandler {
...
    ASAPConnection handleConnection(
        InputStream is, OutputStream os, 
        boolean encrypt, boolean sign,EncounterConnectionType connectionType,
            Set<CharSequence> appsWhiteList, Set<CharSequence> appsBlackList
    ) throws IOException, ASAPException;

Clone this wiki locally