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

net.klakegg.pkix.ocsp.api.OcspFetcherResponse Maven / Gradle / Ivy

package net.klakegg.pkix.ocsp.api;

import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;

/**
 * @author erlend
 */
public interface OcspFetcherResponse extends Closeable {

    int getStatus() throws IOException;

    String getContentType() throws IOException;

    InputStream getContent() throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy