package schedframe.net.pce.topology; /** * Class representing a Time-Value couple. * * @author Bartosz Belter * */ public class AvailableBandwidth { /** * timestamp - the number of milliseconds since January 1, 1970, 00:00:00 GMT. */ long timestamp; /** * available bandwidth */ long value; public AvailableBandwidth(long timestamp, long value) { super(); this.timestamp = timestamp; this.value = value; } /** * @return the timestamp */ public long getTimestamp() { return timestamp; } /** * @param timestamp the timestamp to set */ public void setTimestamp(long timestamp) { this.timestamp = timestamp; } /** * @return the value of available bandwidth */ public long getValue() { return value; } /** * @param value the value of available bandwidth to set */ public void setValue(long value) { this.value = value; } }