Class AllowAllInternodeAuthenticator

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean authenticate​(java.net.InetAddress remoteAddress, int remotePort)
      Decides whether or not a peer is allowed to connect to this node.
      void validateConfiguration()
      Validates configuration of IInternodeAuthenticator implementation (if configurable).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AllowAllInternodeAuthenticator

        public AllowAllInternodeAuthenticator()
    • Method Detail

      • authenticate

        public boolean authenticate​(java.net.InetAddress remoteAddress,
                                    int remotePort)
        Description copied from interface: IInternodeAuthenticator
        Decides whether or not a peer is allowed to connect to this node. If this method returns false, the socket will be immediately closed.
        Specified by:
        authenticate in interface IInternodeAuthenticator
        Parameters:
        remoteAddress - ip address of the connecting node.
        remotePort - port of the connecting node.
        Returns:
        true if the connection should be accepted, false otherwise.