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  
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  }