com.huaweicloud.sdk.apm.v1.model.TraceTopologyNode Maven / Gradle / Ivy
package com.huaweicloud.sdk.apm.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* 调用链拓扑图的节点。
*/
public class TraceTopologyNode {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "node_id")
private Long nodeId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "node_name")
private String nodeName;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "hint")
private String hint;
public TraceTopologyNode withNodeId(Long nodeId) {
this.nodeId = nodeId;
return this;
}
/**
* 节点id。
* @return nodeId
*/
public Long getNodeId() {
return nodeId;
}
public void setNodeId(Long nodeId) {
this.nodeId = nodeId;
}
public TraceTopologyNode withNodeName(String nodeName) {
this.nodeName = nodeName;
return this;
}
/**
* 节点名称。
* @return nodeName
*/
public String getNodeName() {
return nodeName;
}
public void setNodeName(String nodeName) {
this.nodeName = nodeName;
}
public TraceTopologyNode withHint(String hint) {
this.hint = hint;
return this;
}
/**
* 节点提示字段。
* @return hint
*/
public String getHint() {
return hint;
}
public void setHint(String hint) {
this.hint = hint;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
TraceTopologyNode that = (TraceTopologyNode) obj;
return Objects.equals(this.nodeId, that.nodeId) && Objects.equals(this.nodeName, that.nodeName)
&& Objects.equals(this.hint, that.hint);
}
@Override
public int hashCode() {
return Objects.hash(nodeId, nodeName, hint);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TraceTopologyNode {\n");
sb.append(" nodeId: ").append(toIndentedString(nodeId)).append("\n");
sb.append(" nodeName: ").append(toIndentedString(nodeName)).append("\n");
sb.append(" hint: ").append(toIndentedString(hint)).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 ");
}
}