blob: d4fc424a0242365db96b787883a6f73bc2d2c04a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package derms.replica3;
import java.io.Serializable;
public class Resource implements Serializable {
private String resourceID;
private String resourceName;
private int duration;
public Resource(String resourceID, String resourceName, int duration) {
this.resourceID = resourceID;
this.resourceName = resourceName;
this.duration = duration;
}
public String getResourceID() {
return resourceID;
}
public String getResourceName() {
return resourceName;
}
public int getDuration() {
return duration;
}
public void setDuration(int duration) {
this.duration = duration;
}
}
|