View Javadoc
1   /**
2    * Copyright 2004-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }