20 lines
381 B
Java
20 lines
381 B
Java
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;
|
|
}
|
|
}
|