net.ravendb.client.http.VoidRavenCommand Maven / Gradle / Ivy
package net.ravendb.client.http;
public abstract class VoidRavenCommand extends RavenCommand {
protected VoidRavenCommand()
{
super(Void.class);
responseType = RavenCommandResponseType.EMPTY;
}
@SuppressWarnings("SameReturnValue")
@Override
public boolean isReadRequest() {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy