package org.greenstone.p2p;

import java.net.URL;

/**
 *  Simple class to hold the location of a Greenstone server.
 *
 *  This class should be subclassed and methods overridden for 
 *  Greenstone 2, 3 or any special installations such as the
 *  Music DL.
 */

public class GreenstoneServer
{ private URL server;
  
  public GreenstoneServer(URL url)
  { this.server = url;
  }

}