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
20 public class BucketDeltaLine {
21
22 String bucket;
23 long fileDelta;
24 long byteDelta;
25 Date startDate;
26 Date endDate;
27 long interval;
28
29 public String getBucket() {
30 return bucket;
31 }
32
33 public void setBucket(String bucket) {
34 this.bucket = bucket;
35 }
36
37 public long getFileDelta() {
38 return fileDelta;
39 }
40
41 public void setFileDelta(long fileDelta) {
42 this.fileDelta = fileDelta;
43 }
44
45 public long getByteDelta() {
46 return byteDelta;
47 }
48
49 public void setByteDelta(long byteDelta) {
50 this.byteDelta = byteDelta;
51 }
52
53 public Date getStartDate() {
54 return startDate;
55 }
56
57 public void setStartDate(Date startDate) {
58 this.startDate = startDate;
59 }
60
61 public Date getEndDate() {
62 return endDate;
63 }
64
65 public void setEndDate(Date endDate) {
66 this.endDate = endDate;
67 }
68
69 public long getInterval() {
70 return interval;
71 }
72
73 public void setInterval(long interval) {
74 this.interval = interval;
75 }
76 }