Class NodeAttributes
java.lang.Object
org.elasticsearch.client.transform.transforms.NodeAttributes
- All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
public class NodeAttributes
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject
A Pojo class containing an Elastic Node's attributes
-
Nested Class Summary
-
Field Summary
Fields Modifier and Type Field Description static org.elasticsearch.common.ParseFieldATTRIBUTESstatic org.elasticsearch.common.ParseFieldEPHEMERAL_IDstatic org.elasticsearch.common.ParseFieldIDstatic org.elasticsearch.common.ParseFieldNAMEstatic org.elasticsearch.common.xcontent.ConstructingObjectParser<NodeAttributes,java.lang.Void>PARSERstatic org.elasticsearch.common.ParseFieldTRANSPORT_ADDRESS -
Constructor Summary
Constructors Constructor Description NodeAttributes(java.lang.String id, java.lang.String name, java.lang.String ephemeralId, java.lang.String transportAddress, java.util.Map<java.lang.String,java.lang.String> attributes) -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object other)java.util.Map<java.lang.String,java.lang.String>getAttributes()Additional attributes related to this nodejava.lang.StringgetEphemeralId()The ephemeral id of the node.java.lang.StringgetId()The unique identifier of the node.java.lang.StringgetName()The node name.java.lang.StringgetTransportAddress()The host and port where transport HTTP connections are accepted.inthashCode()java.lang.StringtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
-
Field Details
-
ID
public static final org.elasticsearch.common.ParseField ID -
NAME
public static final org.elasticsearch.common.ParseField NAME -
EPHEMERAL_ID
public static final org.elasticsearch.common.ParseField EPHEMERAL_ID -
TRANSPORT_ADDRESS
public static final org.elasticsearch.common.ParseField TRANSPORT_ADDRESS -
ATTRIBUTES
public static final org.elasticsearch.common.ParseField ATTRIBUTES -
PARSER
public static final org.elasticsearch.common.xcontent.ConstructingObjectParser<NodeAttributes,java.lang.Void> PARSER
-
-
Constructor Details
-
NodeAttributes
public NodeAttributes(java.lang.String id, java.lang.String name, java.lang.String ephemeralId, java.lang.String transportAddress, java.util.Map<java.lang.String,java.lang.String> attributes)
-
-
Method Details
-
getId
public java.lang.String getId()The unique identifier of the node. -
getName
public java.lang.String getName()The node name. -
getEphemeralId
public java.lang.String getEphemeralId()The ephemeral id of the node. -
getTransportAddress
public java.lang.String getTransportAddress()The host and port where transport HTTP connections are accepted. -
getAttributes
public java.util.Map<java.lang.String,java.lang.String> getAttributes()Additional attributes related to this node -
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-