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

org.jose4j.http.SimpleResponse Maven / Gradle / Ivy

There is a newer version: 2.4.1.Final
Show newest version
package org.jose4j.http;

import java.util.Collection;
import java.util.List;

/**
 *  The result of a simple HTTP GET 
 */
public interface SimpleResponse
{
    int getStatusCode();

    String getStatusMessage();

    Collection getHeaderNames();

    List getHeaderValues(String name);

    String getBody();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy