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) { this.user = user; } public void setBandwidth(double bandwidth) { this.bandwidth = bandwidth; } public User getUser() { return user; } public double getBandwidth() { return bandwidth; } }