
org.hawkular.cmdgw.api.FeedWebSocketClosedEvent Maven / Gradle / Ivy
The newest version!
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;
import org.hawkular.bus.common.AbstractMessage;
/**
* Command gateway bus notification of Feed WebSocket closure event.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"feedId",
"reason",
"code"
})
public class FeedWebSocketClosedEvent
extends AbstractMessage
{
/**
*
* (Required)
*
*/
@JsonProperty("feedId")
private String feedId;
@JsonProperty("reason")
private String reason;
/**
*
* (Required)
*
*/
@JsonProperty("code")
private String code;
/**
*
* (Required)
*
* @return
* The feedId
*/
@JsonProperty("feedId")
public String getFeedId() {
return feedId;
}
/**
*
* (Required)
*
* @param feedId
* The feedId
*/
@JsonProperty("feedId")
public void setFeedId(String feedId) {
this.feedId = feedId;
}
/**
*
* @return
* The reason
*/
@JsonProperty("reason")
public String getReason() {
return reason;
}
/**
*
* @param reason
* The reason
*/
@JsonProperty("reason")
public void setReason(String reason) {
this.reason = reason;
}
/**
*
* (Required)
*
* @return
* The code
*/
@JsonProperty("code")
public String getCode() {
return code;
}
/**
*
* (Required)
*
* @param code
* The code
*/
@JsonProperty("code")
public void setCode(String code) {
this.code = code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy