com.seeq.model.AgentStatusV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 64.3.0-v202405012032
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.seeq.model.ConnectionStatusV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* AgentStatusV1
*/
public class AgentStatusV1 {
@JsonProperty("connections")
private List connections = new ArrayList();
@JsonProperty("id")
private String id = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("remoteAgent")
private Boolean remoteAgent = false;
@JsonProperty("status")
private String status = null;
@JsonProperty("version")
private String version = null;
public AgentStatusV1 connections(List connections) {
this.connections = connections;
return this;
}
public AgentStatusV1 addConnectionsItem(ConnectionStatusV1 connectionsItem) {
this.connections.add(connectionsItem);
return this;
}
/**
* The status for each connection known by the agent
* @return connections
**/
@Schema(required = true, description = "The status for each connection known by the agent")
public List getConnections() {
return connections;
}
public void setConnections(List connections) {
this.connections = connections;
}
public AgentStatusV1 id(String id) {
this.id = id;
return this;
}
/**
* The ID of the agent. This ID uniquely identifies this agent but does not convey any information about the agent. There is no specified structure for this ID; it may be in UUID form but need not be
* @return id
**/
@Schema(required = true, description = "The ID of the agent. This ID uniquely identifies this agent but does not convey any information about the agent. There is no specified structure for this ID; it may be in UUID form but need not be")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public AgentStatusV1 name(String name) {
this.name = name;
return this;
}
/**
* The name of the agent. The name uniquely identify the agent and it is usually equal to the ID
* @return name
**/
@Schema(required = true, description = "The name of the agent. The name uniquely identify the agent and it is usually equal to the ID")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public AgentStatusV1 remoteAgent(Boolean remoteAgent) {
this.remoteAgent = remoteAgent;
return this;
}
/**
* Indicates if the agent is a remote agent. This is false for local agents.
* @return remoteAgent
**/
@Schema(description = "Indicates if the agent is a remote agent. This is false for local agents.")
public Boolean getRemoteAgent() {
return remoteAgent;
}
public void setRemoteAgent(Boolean remoteAgent) {
this.remoteAgent = remoteAgent;
}
public AgentStatusV1 status(String status) {
this.status = status;
return this;
}
/**
* The status of the current connection between the agent and the Seeq application server. Valid values are Connected, Disconnected and Connecting
* @return status
**/
@Schema(required = true, description = "The status of the current connection between the agent and the Seeq application server. Valid values are Connected, Disconnected and Connecting")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public AgentStatusV1 version(String version) {
this.version = version;
return this;
}
/**
* The Seeq version of the agent
* @return version
**/
@Schema(description = "The Seeq version of the agent")
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AgentStatusV1 agentStatusV1 = (AgentStatusV1) o;
return Objects.equals(this.connections, agentStatusV1.connections) &&
Objects.equals(this.id, agentStatusV1.id) &&
Objects.equals(this.name, agentStatusV1.name) &&
Objects.equals(this.remoteAgent, agentStatusV1.remoteAgent) &&
Objects.equals(this.status, agentStatusV1.status) &&
Objects.equals(this.version, agentStatusV1.version);
}
@Override
public int hashCode() {
return Objects.hash(connections, id, name, remoteAgent, status, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AgentStatusV1 {\n");
sb.append(" connections: ").append(toIndentedString(connections)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" remoteAgent: ").append(toIndentedString(remoteAgent)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}