Unverified Commit 6686cebb authored by Arnaud Lefebvre's avatar Arnaud Lefebvre Committed by GitHub
Browse files

Group statistics: replace Integer by Long types (#596)

Fixes #595
parent 4bfb3afa
......@@ -11,40 +11,40 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public class Group {
public class Statistics {
private Integer storageSize;
private Integer repositorySize;
private Integer lfsObjectsSize;
private Integer jobArtifactsSize;
private Long storageSize;
private Long repositorySize;
private Long lfsObjectsSize;
private Long jobArtifactsSize;
public Integer getStorageSize() {
public Long getStorageSize() {
return storageSize;
}
public void setStorageSize(Integer storageSize) {
public void setStorageSize(Long storageSize) {
this.storageSize = storageSize;
}
public Integer getRepositorySize() {
public Long getRepositorySize() {
return repositorySize;
}
public void setRepositorySize(Integer repositorySize) {
public void setRepositorySize(Long repositorySize) {
this.repositorySize = repositorySize;
}
public Integer getLfsObjectsSize() {
public Long getLfsObjectsSize() {
return lfsObjectsSize;
}
public void setLfsObjectsSize(Integer lfsObjectsSize) {
public void setLfsObjectsSize(Long lfsObjectsSize) {
this.lfsObjectsSize = lfsObjectsSize;
}
public Integer getJobArtifactsSize() {
public Long getJobArtifactsSize() {
return jobArtifactsSize;
}
public void setJobArtifactsSize(Integer jobArtifactsSize) {
public void setJobArtifactsSize(Long jobArtifactsSize) {
this.jobArtifactsSize = jobArtifactsSize;
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment