Tabnine Logo
BlacklistFilter.unblock
Code IndexAdd Tabnine to your IDE (free)

How to use
unblock
method
in
org.apache.mina.filter.firewall.BlacklistFilter

Best Java code snippets using org.apache.mina.filter.firewall.BlacklistFilter.unblock (Showing top 3 results out of 315)

origin: org.apache.mina/mina-core

/**
 * Unblocks the specified endpoint.
 * 
 * @param address The address to unblock
 */
public void unblock(InetAddress address) {
  if (address == null) {
    throw new IllegalArgumentException("Adress to unblock can not be null");
  }
  unblock(new Subnet(address, 32));
}
origin: kaazing/gateway

/**
 * Unblocks the specified endpoint.
 */
public void unblock(InetAddress address) {
  if (address == null) {
    throw new NullPointerException("Adress to unblock can not be null");
  }
  
  unblock(new Subnet(address, 32));
}
origin: org.apache.directory.api/api-ldap-client-all

/**
 * Unblocks the specified endpoint.
 * 
 * @param address The address to unblock
 */
public void unblock(InetAddress address) {
  if (address == null) {
    throw new IllegalArgumentException("Adress to unblock can not be null");
  }
  unblock(new Subnet(address, 32));
}
org.apache.mina.filter.firewallBlacklistFilterunblock

Javadoc

Unblocks the specified endpoint.

Popular methods of BlacklistFilter

  • block
    Blocks the specified subnet.
  • blockSession
  • isBlocked
  • <init>
  • setBlacklist
    Sets the addresses to be blacklisted. NOTE: this call will remove any previously blacklisted address
  • setSubnetBlacklist
    Sets the subnets to be blacklisted. NOTE: this call will remove any previously blacklisted subnets.

Popular in Java

  • Making http post requests using okhttp
  • findViewById (Activity)
  • onCreateOptionsMenu (Activity)
  • getApplicationContext (Context)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • BoxLayout (javax.swing)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now