Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
java-gitlab-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
沈俊林
java-gitlab-api
Commits
9622bd63
Commit
9622bd63
authored
Nov 19, 2013
by
Matt DeTullio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for MR internal ID
parent
f26d72c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
GitlabMergeRequest.java
src/main/java/org/gitlab/api/models/GitlabMergeRequest.java
+9
-0
No files found.
src/main/java/org/gitlab/api/models/GitlabMergeRequest.java
View file @
9622bd63
...
...
@@ -6,6 +6,7 @@ public class GitlabMergeRequest {
public
static
final
String
URL
=
"/merge_requests"
;
private
Integer
_id
;
private
Integer
_iid
;
private
String
_title
;
private
String
_state
;
private
boolean
_closed
;
...
...
@@ -30,6 +31,14 @@ public class GitlabMergeRequest {
_id
=
id
;
}
public
Integer
getIid
()
{
return
_iid
;
}
public
void
setIid
(
Integer
iid
)
{
_iid
=
iid
;
}
public
String
getTargetBranch
()
{
return
_targetBranch
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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