com.marklogic.mapreduce.utilities.ForestHost Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-mapreduce2 Show documentation
Show all versions of marklogic-mapreduce2 Show documentation
MarkLogic Connector for Hadoop MapReduce
package com.marklogic.mapreduce.utilities;
public class ForestHost {
private String forest;
private String hostName;
public ForestHost(String forest, String hostName) {
this.forest = forest;
this.hostName = hostName;
}
public String getForest() {
return forest;
}
public String getHostName() {
return hostName;
}
}