
org.hawkular.feedcomm.api.ExecuteOperationResponse 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;
/**
* A response describing the results of an operation execution.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"resourcePath",
"operationName",
"status",
"message"
})
public class ExecuteOperationResponse
extends AuthMessage
{
/**
* The inventory path to the resource that executed the operation
* (Required)
*
*/
@JsonProperty("resourcePath")
private String resourcePath;
/**
*
* (Required)
*
*/
@JsonProperty("operationName")
private String operationName;
/**
* The success or failure flag.
* (Required)
*
*/
@JsonProperty("status")
private String status;
/**
* An additional message describing the results.
*
*/
@JsonProperty("message")
private String message;
/**
* The inventory path to the resource that executed the operation
* (Required)
*
* @return
* The resourcePath
*/
@JsonProperty("resourcePath")
public String getResourcePath() {
return resourcePath;
}
/**
* The inventory path to the resource that executed the operation
* (Required)
*
* @param resourcePath
* The resourcePath
*/
@JsonProperty("resourcePath")
public void setResourcePath(String resourcePath) {
this.resourcePath = resourcePath;
}
/**
*
* (Required)
*
* @return
* The operationName
*/
@JsonProperty("operationName")
public String getOperationName() {
return operationName;
}
/**
*
* (Required)
*
* @param operationName
* The operationName
*/
@JsonProperty("operationName")
public void setOperationName(String operationName) {
this.operationName = operationName;
}
/**
* The success or failure flag.
* (Required)
*
* @return
* The status
*/
@JsonProperty("status")
public String getStatus() {
return status;
}
/**
* The success or failure flag.
* (Required)
*
* @param status
* The status
*/
@JsonProperty("status")
public void setStatus(String status) {
this.status = status;
}
/**
* An additional message describing the results.
*
* @return
* The message
*/
@JsonProperty("message")
public String getMessage() {
return message;
}
/**
* An additional message describing the results.
*
* @param message
* The message
*/
@JsonProperty("message")
public void setMessage(String message) {
this.message = message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy