SiLAServer.Builder: Allow specifying the server address
Currently, a SiLA Server started with this library will always be accessible on all available network interfaces (equivalent to IP address 0.0.0.0). I propose to add the following methods to SiLAServer.Builder:
withHostname(String hostname)withAddress(InetAddress)withAddress(SocketAddress)
Internally, NettyServerBuilder can be used to create the io.grpc.ServerBuilder for all cases (including the current behavior).