org.hawkular.cmdgw.api.ExportJdrResponse Maven / Gradle / Ivy
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;
/**
* Results of the JDR export. The actual report file content must be appended to this JSON message.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"fileName"
})
public class ExportJdrResponse
extends ResourcePathResponse
{
/**
* The report's file name to be presented to the client, based on the name generated at the server.
* (Required)
*
*/
@JsonProperty("fileName")
private String fileName;
/**
* The report's file name to be presented to the client, based on the name generated at the server.
* (Required)
*
* @return
* The fileName
*/
@JsonProperty("fileName")
public String getFileName() {
return fileName;
}
/**
* The report's file name to be presented to the client, based on the name generated at the server.
* (Required)
*
* @param fileName
* The fileName
*/
@JsonProperty("fileName")
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy