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

com.iprogrammerr.gentle.request.Response Maven / Gradle / Ivy

The newest version!
package com.iprogrammerr.gentle.request;

import java.util.List;

import com.iprogrammerr.gentle.request.binary.SmartBinary;

public interface Response {

	int code();

	boolean hasSuccessCode();

	List
headers(); boolean hasHeader(String key); Header header(String key) throws Exception; SmartBinary body(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy