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; ...@@ -11,40 +11,40 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public class Group { public class Group {
public class Statistics { public class Statistics {
private Integer storageSize; private Long storageSize;
private Integer repositorySize; private Long repositorySize;
private Integer lfsObjectsSize; private Long lfsObjectsSize;
private Integer jobArtifactsSize; private Long jobArtifactsSize;
public Integer getStorageSize() { public Long getStorageSize() {
return storageSize; return storageSize;
} }
public void setStorageSize(Integer storageSize) { public void setStorageSize(Long storageSize) {
this.storageSize = storageSize; this.storageSize = storageSize;
} }
public Integer getRepositorySize() { public Long getRepositorySize() {
return repositorySize; return repositorySize;
} }
public void setRepositorySize(Integer repositorySize) { public void setRepositorySize(Long repositorySize) {
this.repositorySize = repositorySize; this.repositorySize = repositorySize;
} }
public Integer getLfsObjectsSize() { public Long getLfsObjectsSize() {
return lfsObjectsSize; return lfsObjectsSize;
} }
public void setLfsObjectsSize(Integer lfsObjectsSize) { public void setLfsObjectsSize(Long lfsObjectsSize) {
this.lfsObjectsSize = lfsObjectsSize; this.lfsObjectsSize = lfsObjectsSize;
} }
public Integer getJobArtifactsSize() { public Long getJobArtifactsSize() {
return jobArtifactsSize; return jobArtifactsSize;
} }
public void setJobArtifactsSize(Integer jobArtifactsSize) { public void setJobArtifactsSize(Long jobArtifactsSize) {
this.jobArtifactsSize = 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