Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
6686cebb
Unverified
Commit
6686cebb
authored
Jul 21, 2020
by
Arnaud Lefebvre
Committed by
GitHub
Jul 21, 2020
Browse files
Group statistics: replace Integer by Long types (#596)
Fixes #595
parent
4bfb3afa
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/Group.java
View file @
6686cebb
...
...
@@ -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
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment