
org.hawkular.cmdgw.api.ExportJdrRequest Maven / Gradle / Ivy
The newest version!
package org.hawkular.cmdgw.api;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Exports a JDR from the Application Server instance given by the inventory path stored in resourcePath field.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"deleteImmediately"
})
public class ExportJdrRequest
extends ResourcePathRequest
implements ResourcePathDestination
{
/**
* Set to false if the report should remain in the server node. Otherwise, set to true.
*
*/
@JsonProperty("deleteImmediately")
private boolean deleteImmediately;
/**
* Set to false if the report should remain in the server node. Otherwise, set to true.
*
* @return
* The deleteImmediately
*/
@JsonProperty("deleteImmediately")
public boolean isDeleteImmediately() {
return deleteImmediately;
}
/**
* Set to false if the report should remain in the server node. Otherwise, set to true.
*
* @param deleteImmediately
* The deleteImmediately
*/
@JsonProperty("deleteImmediately")
public void setDeleteImmediately(boolean deleteImmediately) {
this.deleteImmediately = deleteImmediately;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy