
org.hawkular.feedcomm.api.DeployApplicationResponse Maven / Gradle / Ivy
The newest version!
package org.hawkular.feedcomm.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 an application deployment request.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"resourcePath",
"destinationFileName",
"status",
"message"
})
public class DeployApplicationResponse
extends AuthMessage
{
/**
* The inventory path to the resource that deployed the application
* (Required)
*
*/
@JsonProperty("resourcePath")
private String resourcePath;
/**
*
* (Required)
*
*/
@JsonProperty("destinationFileName")
private String destinationFileName;
/**
* Indicates if the deployment succeeded or failed.
* (Required)
*
*/
@JsonProperty("status")
private String status;
/**
* A message that further describes the results of the deployment.
*
*/
@JsonProperty("message")
private String message;
/**
* The inventory path to the resource that deployed the application
* (Required)
*
* @return
* The resourcePath
*/
@JsonProperty("resourcePath")
public String getResourcePath() {
return resourcePath;
}
/**
* The inventory path to the resource that deployed the application
* (Required)
*
* @param resourcePath
* The resourcePath
*/
@JsonProperty("resourcePath")
public void setResourcePath(String resourcePath) {
this.resourcePath = resourcePath;
}
/**
*
* (Required)
*
* @return
* The destinationFileName
*/
@JsonProperty("destinationFileName")
public String getDestinationFileName() {
return destinationFileName;
}
/**
*
* (Required)
*
* @param destinationFileName
* The destinationFileName
*/
@JsonProperty("destinationFileName")
public void setDestinationFileName(String destinationFileName) {
this.destinationFileName = destinationFileName;
}
/**
* Indicates if the deployment succeeded or failed.
* (Required)
*
* @return
* The status
*/
@JsonProperty("status")
public String getStatus() {
return status;
}
/**
* Indicates if the deployment succeeded or failed.
* (Required)
*
* @param status
* The status
*/
@JsonProperty("status")
public void setStatus(String status) {
this.status = status;
}
/**
* A message that further describes the results of the deployment.
*
* @return
* The message
*/
@JsonProperty("message")
public String getMessage() {
return message;
}
/**
* A message that further describes the results of the deployment.
*
* @param message
* The message
*/
@JsonProperty("message")
public void setMessage(String message) {
this.message = message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy