public <T> Future<T> get(Class<T> c) throws UniformInterfaceException {
return handle(c, new ClientRequestImpl(getURI(), "GET"));
}
public <T> Future<T> get(GenericType<T> gt) throws UniformInterfaceException {
return handle(gt, new ClientRequestImpl(getURI(), "GET"));
}