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

io.bitsensor.plugins.java.blocking.BlockingManager Maven / Gradle / Ivy

The newest version!
package io.bitsensor.plugins.java.blocking;

import io.bitsensor.lib.entity.proto.Block;

import java.util.List;
import java.util.Map;

/**
 * Blocking manager that keeps track of a blacklist containing blocked attackers.
 */
public interface BlockingManager {

    /**
     * Returns a map of blocked attackers stored in memory.
     *
     * @return blocked attacker map.
     */
    List getBlacklist();

    /**
     * Fetches blacklist.
     */
    void fetchBlacklist();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy