no.unit.nva.auth.uriretriever.RawContentRetriever Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth Show documentation
Show all versions of auth Show documentation
A commons library for the NVA project
The newest version!
package no.unit.nva.auth.uriretriever;
import java.net.URI;
import java.net.http.HttpResponse;
import java.util.Optional;
public interface RawContentRetriever {
Optional getRawContent(URI uri, String mediaType);
Optional> fetchResponse(URI uri, String mediaType);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy