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
86f6f52c
Commit
86f6f52c
authored
Sep 18, 2013
by
Nick Albion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for getBranch/es
parent
5f1b0a35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
2 deletions
+47
-2
GitlabAPI.java
src/main/java/org/gitlab/api/GitlabAPI.java
+15
-2
GitlabBranch.java
src/main/java/org/gitlab/api/models/GitlabBranch.java
+32
-0
No files found.
src/main/java/org/gitlab/api/GitlabAPI.java
View file @
86f6f52c
...
...
@@ -3,6 +3,7 @@ package org.gitlab.api;
import
org.codehaus.jackson.map.DeserializationConfig
;
import
org.codehaus.jackson.map.ObjectMapper
;
import
org.gitlab.api.http.GitlabHTTPRequestor
;
import
org.gitlab.api.models.GitlabBranch
;
import
org.gitlab.api.models.GitlabCommit
;
import
org.gitlab.api.models.GitlabMergeRequest
;
import
org.gitlab.api.models.GitlabNote
;
...
...
@@ -188,13 +189,25 @@ public class GitlabAPI {
return
dispatch
().
with
(
"body"
,
body
).
to
(
tailUrl
,
GitlabNote
.
class
);
}
public
List
<
GitlabBranch
>
getBranches
(
GitlabProject
project
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
project
.
getId
()
+
GitlabBranch
.
URL
;
GitlabBranch
[]
branches
=
retrieve
().
to
(
tailUrl
,
GitlabBranch
[].
class
);
return
Arrays
.
asList
(
branches
);
}
public
GitlabBranch
getBranch
(
GitlabProject
project
,
String
branchName
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
project
.
getId
()
+
GitlabBranch
.
URL
+
branchName
;
GitlabBranch
branch
=
retrieve
().
to
(
tailUrl
,
GitlabBranch
.
class
);
return
branch
;
}
public
void
protectBranch
(
GitlabProject
project
,
String
branchName
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
project
.
getId
()
+
"/repository/branches"
+
"/"
+
branchName
+
"/protect"
;
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
project
.
getId
()
+
GitlabBranch
.
URL
+
branchName
+
"/protect"
;
retrieve
().
method
(
"PUT"
).
to
(
tailUrl
,
Void
.
class
);
}
public
void
unprotectBranch
(
GitlabProject
project
,
String
branchName
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
project
.
getId
()
+
"/repository/branches"
+
"/"
+
branchName
+
"/unprotect"
;
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
project
.
getId
()
+
GitlabBranch
.
URL
+
branchName
+
"/unprotect"
;
retrieve
().
method
(
"PUT"
).
to
(
tailUrl
,
Void
.
class
);
}
...
...
src/main/java/org/gitlab/api/models/GitlabBranch.java
0 → 100644
View file @
86f6f52c
package
org
.
gitlab
.
api
.
models
;
import
org.codehaus.jackson.annotate.JsonProperty
;
public
class
GitlabBranch
{
public
final
static
String
URL
=
"/repository/branches/"
;
@JsonProperty
(
"name"
)
private
String
_name
;
// @JsonProperty("commit")
// private GitlabCommit _commit;
@JsonProperty
(
"protected"
)
private
boolean
_protected
;
public
String
getName
()
{
return
_name
;
}
public
void
setName
(
String
name
)
{
this
.
_name
=
name
;
}
public
boolean
isProtected
()
{
return
_protected
;
}
public
void
setProtected
(
boolean
isProtected
)
{
this
.
_protected
=
isProtected
;
}
}
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