com.instaclustr.cassandra.sidecar.operations.drain.DrainOperationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-sidecar Show documentation
Show all versions of cassandra-sidecar Show documentation
Sidecar for Apache Cassandra
package com.instaclustr.cassandra.sidecar.operations.drain;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.instaclustr.operations.OperationRequest;
public class DrainOperationRequest extends OperationRequest {
public DrainOperationRequest() {
this("drain");
}
@JsonCreator
public DrainOperationRequest(@JsonProperty("type") final String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy