All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.marklogic.mapreduce.utilities.ForestHost Maven / Gradle / Ivy

There is a newer version: 2.3.4.2
Show newest version
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;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy