org.xbib.oai.client.ClientOAIResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oai-client Show documentation
Show all versions of oai-client Show documentation
Open Archive Initiative library for Java
package org.xbib.oai.client;
import org.xbib.helianthus.common.http.AggregatedHttpMessage;
import org.xbib.oai.OAIResponse;
import java.io.IOException;
import java.io.Writer;
/**
* Default OAI response
*/
public interface ClientOAIResponse extends OAIResponse {
void receivedResponse(AggregatedHttpMessage message, Writer writer) throws IOException;
}