
com.jonnymatts.jzonbie.response.Response Maven / Gradle / Ivy
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