
org.kuali.common.aws.s3.pojo.BucketDeltaSummary Maven / Gradle / Ivy
/**
* Copyright 2004-2014 The Kuali Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.opensource.org/licenses/ecl2.php
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kuali.common.aws.s3.pojo;
import java.util.Date;
import java.util.List;
public class BucketDeltaSummary {
String bucket;
List deltaLines;
long fileDelta;
long byteDelta;
Date startDate;
Date endDate;
long interval;
public String getBucket() {
return bucket;
}
public void setBucket(String bucket) {
this.bucket = bucket;
}
public List getDeltaLines() {
return deltaLines;
}
public void setDeltaLines(List deltaLines) {
this.deltaLines = deltaLines;
}
public long getFileDelta() {
return fileDelta;
}
public void setFileDelta(long fileDelta) {
this.fileDelta = fileDelta;
}
public long getByteDelta() {
return byteDelta;
}
public void setByteDelta(long byteDelta) {
this.byteDelta = byteDelta;
}
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
public long getInterval() {
return interval;
}
public void setInterval(long interval) {
this.interval = interval;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy