package org.greenstone.p2p;

import java.util.*;

public interface ClientResponse
{ boolean isSuccessful(); // obvious
  Vector  getValues(String label); // get the values associated with a given
                                   // label; which values are available varies
                                   // from action to action
  Set     getLabels();             // get the labels in this response
}