
org.hawkular.feedcomm.api.AuthMessage 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;
import org.hawkular.bus.common.BasicMessage;
/**
* Message properties that are needed for authentication.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"authentication"
})
public class AuthMessage
extends BasicMessage
{
/**
* Provides user credentials or security token.
*
*/
@JsonProperty("authentication")
private Authentication authentication;
/**
* Provides user credentials or security token.
*
* @return
* The authentication
*/
@JsonProperty("authentication")
public Authentication getAuthentication() {
return authentication;
}
/**
* Provides user credentials or security token.
*
* @param authentication
* The authentication
*/
@JsonProperty("authentication")
public void setAuthentication(Authentication authentication) {
this.authentication = authentication;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy