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

com.jonnymatts.jzonbie.response.Response Maven / Gradle / Ivy

There is a newer version: 5.1.0
Show newest version
package com.jonnymatts.jzonbie.response;

import java.time.Duration;
import java.util.Map;
import java.util.Optional;

public interface Response {
    int getStatusCode();
    Map getHeaders();
    Object getBody();
    boolean isFileResponse();
    default Optional getDelay() {
        return Optional.empty();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy