com.instaclustr.cassandra.sidecar.operations.restart.RestartOperationRequest 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.restart;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.instaclustr.operations.OperationRequest;
public class RestartOperationRequest extends OperationRequest {
public RestartOperationRequest() {
this("restart");
}
@JsonCreator
public RestartOperationRequest(@JsonProperty("type") final String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy