Writing the concrete ping server

The concrete class must extends ConcreteNetObj and implements the network interfaces that will be supported:

    public class ConcretePingServer
           extends ConcreteNetObj
           implements PingServer {
      public String ping() throws NetException {
        return "Hello World!";
      }
    }

- 4 -