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