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

io.github.portlek.sfs.status.Rack Maven / Gradle / Ivy

There is a newer version: 5.7
Show newest version
package io.github.portlek.sfs.status;

import java.util.List;

public class Rack extends AbstractNode {

    public List DataNodes;

    public int Free;

    public String Id;

    public int Max;

    @Override
    public String toString() {
        return "Rack{" +
            "DataNodes=" + this.DataNodes +
            ", Free=" + this.Free +
            ", Id='" + this.Id + '\'' +
            ", Max=" + this.Max +
            '}';
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy