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

io.github.portlek.sfs.status.DataCenter 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 DataCenter extends AbstractNode {

    public int Free;

    public String Id;

    public int Max;

    public List Racks;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy