All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.sitebricks.client.WebResponse Maven / Gradle / Ivy

There is a newer version: 0.8.11
Show newest version
package com.google.sitebricks.client;

import com.google.inject.TypeLiteral;

import java.util.Map;

/**
 * @author Dhanji R. Prasanna ([email protected])
 */
public interface WebResponse {
  Map getHeaders();

  int status();

   ResponseTransportBuilder to(Class data);

   ResponseTransportBuilder to(TypeLiteral data);

  String toString();

  public static interface ResponseTransportBuilder {
    T using(Class transport);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy