blob: f77e968f09ba869c5dcc5df6e926cfa24d72af13 [file] [log] [blame]
package org.apache.hadoop.yarn.api.records;
public interface NodeId extends Comparable<NodeId> {
String getHost();
void setHost(String host);
int getPort();
void setPort(int port);
}