1 package org.kuali.common.aws.s3.pojo;
2
3 import java.util.Date;
4 import java.util.List;
5
6 public class BucketDeltaSummary {
7
8 String bucket;
9 List<BucketDeltaLine> deltaLines;
10 long fileDelta;
11 long byteDelta;
12 Date startDate;
13 Date endDate;
14 long interval;
15
16 public String getBucket() {
17 return bucket;
18 }
19
20 public void setBucket(String bucket) {
21 this.bucket = bucket;
22 }
23
24 public List<BucketDeltaLine> getDeltaLines() {
25 return deltaLines;
26 }
27
28 public void setDeltaLines(List<BucketDeltaLine> deltaLines) {
29 this.deltaLines = deltaLines;
30 }
31
32 public long getFileDelta() {
33 return fileDelta;
34 }
35
36 public void setFileDelta(long fileDelta) {
37 this.fileDelta = fileDelta;
38 }
39
40 public long getByteDelta() {
41 return byteDelta;
42 }
43
44 public void setByteDelta(long byteDelta) {
45 this.byteDelta = byteDelta;
46 }
47
48 public Date getStartDate() {
49 return startDate;
50 }
51
52 public void setStartDate(Date startDate) {
53 this.startDate = startDate;
54 }
55
56 public Date getEndDate() {
57 return endDate;
58 }
59
60 public void setEndDate(Date endDate) {
61 this.endDate = endDate;
62 }
63
64 public long getInterval() {
65 return interval;
66 }
67
68 public void setInterval(long interval) {
69 this.interval = interval;
70 }
71
72 }