ClusterNodeInfo.java 736 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.crx.core.cluster;

public class ClusterNodeInfo {
    protected final String id;
    private final String os;
    private final String hostname;
    private final String repositoryHome;

    public ClusterNodeInfo(String id, String os, String hostname, String repositoryHome) {
        this.id = id;
        this.os = os;
        this.hostname = hostname;
        this.repositoryHome = repositoryHome;
    }

    public String getId() {
        return this.id;
    }

    public String getOS() {
        return this.os;
    }

    public String getHostname() {
        return this.hostname;
    }

    public String getRepositoryHome() {
        return this.repositoryHome;
    }
}