org.hawkular.cmdgw.api.ExecuteOperationResponse 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;
/**
* A response describing the results of an operation execution.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"operationName"
})
public class ExecuteOperationResponse
extends ResourcePathResponse
{
/**
*
* (Required)
*
*/
@JsonProperty("operationName")
private String operationName;
/**
*
* (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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy