]> git.somenet.org - pub/jan/lsdc.git/blob - src/at/ac/tuwien/lsdc/types/Application.java
added ant, removed mvn, added libs, reanamed classes & implemented a bit more
[pub/jan/lsdc.git] / src / at / ac / tuwien / lsdc / types / Application.java
1 package at.ac.tuwien.lsdc.types;
2
3 public class Application {
4         
5         private long timestamp;
6         private int size;
7         private int ram;
8         private int cpu;
9         private int duration;
10         
11         public Application(long timestamp, int size, int ram, int cpu, int duration) {
12                 super();
13                 this.timestamp = timestamp;
14                 this.size = size;
15                 this.ram = ram;
16                 this.cpu = cpu;
17                 this.duration = duration;
18         }
19
20         public long getTimestamp() {
21                 return timestamp;
22         }
23
24         public int getSize() {
25                 return size;
26         }
27
28         public int getRam() {
29                 return ram;
30         }
31
32         public int getCpu() {
33                 return cpu;
34         }
35
36         public int getDuration() {
37                 return duration;
38         }
39
40 }