Exemple #1
0
 /**
  * Get a client object which can be used to execute commands.
  *
  * <p>It's necessary to get a fresh client for each command because once the client is put in the
  * "aborted" state there's no way to undo that effect.
  *
  * @return A client (without connection established)
  */
 BlueJCvsClient getClient() {
   BlueJCvsClient client = new BlueJCvsClient(null, adminHandler);
   client.dontUseGzipFileHandler();
   return client;
 }