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

cloudreports.models.SanStorageRegistry Maven / Gradle / Ivy

Go to download

Autonomously builds and runs Cloud Computing simulation environments in CloudSim Plus from an YAML file.

There is a newer version: 7.3.3
Show newest version
/*
 * Copyright (c) 2010-2012 Thiago T. Sá
 *
 * This file is part of CloudReports.
 *
 * CloudReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * CloudReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * For more information about your rights as a user of CloudReports,
 * refer to the LICENSE file or see .
 */

package cloudreports.models;

import java.io.Serializable;

/**
 * A SAN registry stores basic information about a storage area network owned
 * by a datacenter.
 *
 * @author      Thiago T. Sá
 * @since       1.0
 */
public final class SanStorageRegistry implements Serializable {
    private long id;
    private String name;
    private long capacity;
    private double bandwidth;
    private double networkLatency;

    public SanStorageRegistry() {
    }

    /**
     * Gets the SAN's id.
     *
     * @return the SAN's id.
     */
    public long getId() {
        return id;
    }

    /**
     * Sets the SAN's id.
     *
     * @param   id  the SAN's id.
     */
    public void setId(long id) {
        this.id = id;
    }

    /**
     * Gets the SAN's capacity.
     *
     * @return the SAN's capacity.
     */
    public long getCapacity() {
        return capacity;
    }

    /**
     * Sets the SAN's capacity.
     *
     * @param   capacity    the SAN's capacity.
     */
    public void setCapacity(long capacity) {
        this.capacity = capacity;
    }

    /**
     * Gets the SAN's bandwidth.
     *
     * @return the SAN's bandwidth.
     */
    public double getBandwidth() {
        return bandwidth;
    }

    /**
     * Sets the SAN's bandwidth.
     *
     * @param   bandwidth   the SAN's bandwidth.
     */
    public void setBandwidth(double bandwidth) {
        this.bandwidth = bandwidth;
    }

    /**
     * Gets the SAN's latency.
     *
     * @return the SAN's latency.
     */
    public double getNetworkLatency() {
        return networkLatency;
    }

    /**
     * Sets the SAN's latency.
     *
     * @param   networkLatency  the SAN's latency.
     */
    public void setNetworkLatency(double networkLatency) {
        this.networkLatency = networkLatency;
    }

    /**
     * Gets the SAN's name.
     *
     * @return the SAN's name.
     */
    public String getName() {
        return name;
    }

    /**
     * Sets the SAN's name.
     *
     * @param   name    the SAN's name.
     */
    public void setName(String name) {
        this.name = name;
    }

    @Override
    public boolean equals(Object sanStorage){
      if ( this == sanStorage ) return true;
      if ( !(sanStorage instanceof SanStorageRegistry) ) return false;
      SanStorageRegistry sr = (SanStorageRegistry)sanStorage;
      return this.getName().equals(sr.getName());
    }

    @Override
    public int hashCode() {
        int hash = 3;
        hash = 79 * hash + (this.getName() != null ? this.getName().hashCode() : 0);
        return hash;
    }

    @Override
    public String toString() {
        StringBuilder s = new StringBuilder("Name="+getName()+"\n");
        s.append("Capacity="+getCapacity()+"\n");
        s.append("Bandwidth="+getBandwidth()+"\n");
        s.append("Latency="+getNetworkLatency()+"\n");

        return s.toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy