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