org.xbib.oai.client.identify.IdentifyRequest 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.identify;
import org.xbib.oai.client.ClientOAIRequest;
import org.xbib.oai.OAIRequest;
/**
*
*/
public class IdentifyRequest extends ClientOAIRequest implements OAIRequest {
public IdentifyRequest() {
super();
addParameter(VERB_PARAMETER, IDENTIFY);
}
}