com.sdklite.net.http.HttpHeader Maven / Gradle / Ivy
The newest version!
package com.sdklite.net.http;
/**
* Represents the HTTP header field-value pair
*
* @author johnsonlee
*
*/
public interface HttpHeader {
/**
* Returns the header name
*/
public String getName();
/**
* Returns the header value
*/
public String getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy