package fr.ntr; public class ResourceBlock { private User user; private double bandwith; public ResourceBlock (User user, double bandwith) { this.user = user; this.bandwith = bandwith; } public void setUser(User user) { this.user = user; } public void setBandwith(double bandwith) { this.bandwith = bandwith; } }