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
92e14f81
Commit
92e14f81
authored
Feb 25, 2014
by
Greg Messner
Browse files
Changed Number to Integer.
parent
c88bd0ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/messners/gitlab/api/webhook/PushEvent.java
View file @
92e14f81
...
...
@@ -17,11 +17,11 @@ public class PushEvent {
private
String
after
;
private
String
before
;
private
List
<
Commit
>
commits
;
private
Numb
er
projectId
;
private
Integ
er
projectId
;
private
String
ref
;
private
Repository
repository
;
private
Numb
er
totalCommitsCount
;
private
Numb
er
userId
;
private
Integ
er
totalCommitsCount
;
private
Integ
er
userId
;
private
String
userName
;
public
String
getAfter
()
{
...
...
@@ -48,11 +48,11 @@ public class PushEvent {
this
.
commits
=
commits
;
}
public
Numb
er
getProjectId
()
{
public
Integ
er
getProjectId
()
{
return
this
.
projectId
;
}
public
void
setProjectId
(
Numb
er
projectId
)
{
public
void
setProjectId
(
Integ
er
projectId
)
{
this
.
projectId
=
projectId
;
}
...
...
@@ -72,19 +72,19 @@ public class PushEvent {
this
.
repository
=
repository
;
}
public
Numb
er
getTotalCommitsCount
()
{
public
Integ
er
getTotalCommitsCount
()
{
return
this
.
totalCommitsCount
;
}
public
void
setTotalCommitsCount
(
Numb
er
totalCommitsCount
)
{
public
void
setTotalCommitsCount
(
Integ
er
totalCommitsCount
)
{
this
.
totalCommitsCount
=
totalCommitsCount
;
}
public
Numb
er
getUserId
()
{
public
Integ
er
getUserId
()
{
return
this
.
userId
;
}
public
void
setUserId
(
Numb
er
userId
)
{
public
void
setUserId
(
Integ
er
userId
)
{
this
.
userId
=
userId
;
}
...
...
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