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
01948052
Commit
01948052
authored
May 12, 2019
by
Greg Messner
Browse files
Brought into spec with GitLab API docs (#352).
parent
c6080e4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/ProjectHook.java
View file @
01948052
...
...
@@ -25,7 +25,11 @@ public class ProjectHook {
private
Boolean
wikiPageEvents
;
private
String
token
;
private
Boolean
repositoryUpdateEvents
;
private
Boolean
confidentialIssuesEvents
;
private
Boolean
confidentialNoteEvents
;
private
String
pushEventsBranchFilter
;
public
Boolean
getBuildEvents
()
{
return
buildEvents
;
}
...
...
@@ -146,6 +150,38 @@ public class ProjectHook {
this
.
wikiPageEvents
=
wikiPageEvents
;
}
public
Boolean
getRepositoryUpdateEvents
()
{
return
repositoryUpdateEvents
;
}
public
void
setRepositoryUpdateEvents
(
Boolean
repositoryUpdateEvents
)
{
this
.
repositoryUpdateEvents
=
repositoryUpdateEvents
;
}
public
Boolean
getConfidentialIssuesEvents
()
{
return
confidentialIssuesEvents
;
}
public
void
setConfidentialIssuesEvents
(
Boolean
confidentialIssuesEvents
)
{
this
.
confidentialIssuesEvents
=
confidentialIssuesEvents
;
}
public
Boolean
getConfidentialNoteEvents
()
{
return
confidentialNoteEvents
;
}
public
void
setConfidentialNoteEvents
(
Boolean
confidentialNoteEvents
)
{
this
.
confidentialNoteEvents
=
confidentialNoteEvents
;
}
public
String
getPushEventsBranchFilter
()
{
return
pushEventsBranchFilter
;
}
public
void
setPushEventsBranchFilter
(
String
pushEventsBranchFilter
)
{
this
.
pushEventsBranchFilter
=
pushEventsBranchFilter
;
}
/**
* @return the do build events flag
* @deprecated As of release 4.1.0, replaced by {@link #getBuildEvents()}
...
...
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