org.hawkular.cmdgw.api.EchoResponse 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;
/**
* An echo response where the reply should be the message from the echo request.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"reply"
})
public class EchoResponse
extends AuthMessage
{
/**
*
* (Required)
*
*/
@JsonProperty("reply")
private String reply;
/**
*
* (Required)
*
* @return
* The reply
*/
@JsonProperty("reply")
public String getReply() {
return reply;
}
/**
*
* (Required)
*
* @param reply
* The reply
*/
@JsonProperty("reply")
public void setReply(String reply) {
this.reply = reply;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy