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
36b888b2
Commit
36b888b2
authored
May 24, 2019
by
Greg Messner
Browse files
Initial commit (#362).
parent
bef6b6de
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/webhook/IssueChanges.java
0 → 100644
View file @
36b888b2
package
org.gitlab4j.api.webhook
;
import
java.util.Date
;
public
class
IssueChanges
extends
EventChanges
{
private
ChangeContainer
<
Date
>
dueDate
;
private
ChangeContainer
<
Boolean
>
confidential
;
public
ChangeContainer
<
Date
>
getDueDate
()
{
return
dueDate
;
}
public
void
setDueDate
(
ChangeContainer
<
Date
>
dueDate
)
{
this
.
dueDate
=
dueDate
;
}
public
ChangeContainer
<
Boolean
>
getConfidential
()
{
return
confidential
;
}
public
void
setConfidential
(
ChangeContainer
<
Boolean
>
confidential
)
{
this
.
confidential
=
confidential
;
}
}
src/main/java/org/gitlab4j/api/webhook/MergeRequestChanges.java
0 → 100644
View file @
36b888b2
package
org.gitlab4j.api.webhook
;
public
class
MergeRequestChanges
extends
EventChanges
{
private
ChangeContainer
<
String
>
mergeStatus
;
public
ChangeContainer
<
String
>
getMergeStatus
()
{
return
mergeStatus
;
}
public
void
setMergeStatus
(
ChangeContainer
<
String
>
mergeStatus
)
{
this
.
mergeStatus
=
mergeStatus
;
}
}
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