All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hawkular.cmdgw.api.WelcomeResponse 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;
import org.hawkular.bus.common.AbstractMessage;


/**
 * Tells the UI client what is his sessionId
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
    "sessionId"
})
public class WelcomeResponse
    extends AbstractMessage
{

    /**
     * The ID of a WebSocket Session that the receving client just openened.
     * (Required)
     * 
     */
    @JsonProperty("sessionId")
    private String sessionId;

    /**
     * The ID of a WebSocket Session that the receving client just openened.
     * (Required)
     * 
     * @return
     *     The sessionId
     */
    @JsonProperty("sessionId")
    public String getSessionId() {
        return sessionId;
    }

    /**
     * The ID of a WebSocket Session that the receving client just openened.
     * (Required)
     * 
     * @param sessionId
     *     The sessionId
     */
    @JsonProperty("sessionId")
    public void setSessionId(String sessionId) {
        this.sessionId = sessionId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy