All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.masahitojp.botan.adapter.BotanAdapter Maven / Gradle / Ivy

There is a newer version: 0.6.4
Show newest version
package com.github.masahitojp.botan.adapter;

import com.github.masahitojp.botan.Botan;
import com.github.masahitojp.botan.exception.BotanException;
import com.github.masahitojp.botan.message.BotanMessage;

import java.util.Optional;


public interface BotanAdapter {

    void run() throws BotanException;

    void say(BotanMessage message);

    void initialize(Botan botan);

    void beforeShutdown();

    default Optional getFromAdapterName() {
        return Optional.empty();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy