package fr.ntr;
public class ResourceBlock {
private User user;
private double bandwidth;
public ResourceBlock (User user, double bandwidth) {
this.user = user;
this.bandwidth = bandwidth;
}
public void setUser(User user) {
public void setBandwidth(double bandwidth) {
public User getUser() {
return user;
public double getBandwidth() {
return bandwidth;