Header abstract class
Class for describing an HTTP header.
Required Module
Modules that use this class should inheritcom.google.gwt.http.HTTP.
{@gwt.include com/google/gwt/examples/http/InheritsExample.gwt.xml}
abstract class Header {
/**
* Returns the name of the HTTP header.
*
* @return name of the HTTP header
*/
String getName();
/**
* Returns the value of the HTTP header.
*
* @return value of the HTTP header
*/
String getValue();
}