Writing the network interface for the ping server

Server side:

The interface must extends the interface NetObj:

    public interface PingServer extends NetObj {
      public String ping() throws NetException;
    }
All the methods must throw NetException.


- 3 -