From eb6117e7c05e7a76562e7d5f83d997047173a4f2 Mon Sep 17 00:00:00 2001 From: Tyler Rockwood Date: Mon, 21 Mar 2016 22:49:50 -0400 Subject: [PATCH 1/3] Added Javadocs --- .idea/.name | 1 + .idea/compiler.xml | 22 + .idea/copyright/profiles_settings.xml | 3 + .idea/encodings.xml | 6 + .idea/gradle.xml | 23 + ...jackson_core_jackson_annotations_2_5_0.xml | 11 + ...terxml_jackson_core_jackson_core_2_5_3.xml | 11 + ...ml_jackson_core_jackson_databind_2_5_3.xml | 11 + .../Gradle__commons_io_commons_io_2_4.xml | 9 + .idea/libraries/Gradle__junit_junit_4_12.xml | 11 + .../Gradle__org_hamcrest_hamcrest_all_1_3.xml | 9 + ...Gradle__org_hamcrest_hamcrest_core_1_3.xml | 11 + .idea/misc.xml | 35 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 1058 +++++ allclasses-frame.html | 55 + allclasses-noframe.html | 55 + constant-values.html | 561 +++ deprecated-list.html | 159 + help-doc.html | 223 + index-all.html | 1863 ++++++++ index.html | 74 + org/gitlab/api/AuthMethod.html | 339 ++ org/gitlab/api/GitlabAPI.html | 4214 +++++++++++++++++ org/gitlab/api/GitlabAPIException.html | 304 ++ org/gitlab/api/Pagination.html | 386 ++ org/gitlab/api/TokenType.html | 378 ++ org/gitlab/api/models/CommitComment.html | 426 ++ .../api/models/GitlabAbstractMember.html | 345 ++ org/gitlab/api/models/GitlabAccessLevel.html | 429 ++ org/gitlab/api/models/GitlabBranch.html | 374 ++ org/gitlab/api/models/GitlabBranchCommit.html | 474 ++ org/gitlab/api/models/GitlabBuild.html | 660 +++ org/gitlab/api/models/GitlabCommit.html | 521 ++ .../api/models/GitlabCommitComparison.html | 426 ++ org/gitlab/api/models/GitlabCommitDiff.html | 504 ++ org/gitlab/api/models/GitlabCommitStatus.html | 599 +++ org/gitlab/api/models/GitlabGroup.html | 426 ++ org/gitlab/api/models/GitlabGroupMember.html | 281 ++ org/gitlab/api/models/GitlabIssue.Action.html | 355 ++ org/gitlab/api/models/GitlabIssue.html | 661 +++ org/gitlab/api/models/GitlabLabel.html | 375 ++ org/gitlab/api/models/GitlabMergeRequest.html | 918 ++++ org/gitlab/api/models/GitlabMilestone.html | 530 +++ org/gitlab/api/models/GitlabNamespace.html | 478 ++ org/gitlab/api/models/GitlabNote.html | 504 ++ org/gitlab/api/models/GitlabPermission.html | 282 ++ org/gitlab/api/models/GitlabProject.html | 1024 ++++ .../api/models/GitlabProjectAccessLevel.html | 308 ++ org/gitlab/api/models/GitlabProjectHook.html | 504 ++ .../api/models/GitlabProjectMember.html | 281 ++ org/gitlab/api/models/GitlabRelease.html | 308 ++ .../api/models/GitlabRepositoryTree.html | 396 ++ org/gitlab/api/models/GitlabRunner.html | 386 ++ org/gitlab/api/models/GitlabSSHKey.html | 396 ++ org/gitlab/api/models/GitlabSession.html | 349 ++ org/gitlab/api/models/GitlabSystemHook.html | 374 ++ org/gitlab/api/models/GitlabTag.html | 400 ++ org/gitlab/api/models/GitlabUser.html | 972 ++++ org/gitlab/api/models/package-frame.html | 54 + org/gitlab/api/models/package-summary.html | 277 ++ org/gitlab/api/models/package-tree.html | 183 + org/gitlab/api/package-frame.html | 30 + org/gitlab/api/package-summary.html | 182 + org/gitlab/api/package-tree.html | 162 + overview-frame.html | 22 + overview-summary.html | 137 + overview-tree.html | 201 + package-list | 2 + script.js | 30 + serialized-form.html | 146 + stylesheet.css | 574 +++ 73 files changed, 27112 insertions(+) create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_annotations_2_5_0.xml create mode 100644 .idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_core_2_5_3.xml create mode 100644 .idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_databind_2_5_3.xml create mode 100644 .idea/libraries/Gradle__commons_io_commons_io_2_4.xml create mode 100644 .idea/libraries/Gradle__junit_junit_4_12.xml create mode 100644 .idea/libraries/Gradle__org_hamcrest_hamcrest_all_1_3.xml create mode 100644 .idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 allclasses-frame.html create mode 100644 allclasses-noframe.html create mode 100644 constant-values.html create mode 100644 deprecated-list.html create mode 100644 help-doc.html create mode 100644 index-all.html create mode 100644 index.html create mode 100644 org/gitlab/api/AuthMethod.html create mode 100644 org/gitlab/api/GitlabAPI.html create mode 100644 org/gitlab/api/GitlabAPIException.html create mode 100644 org/gitlab/api/Pagination.html create mode 100644 org/gitlab/api/TokenType.html create mode 100644 org/gitlab/api/models/CommitComment.html create mode 100644 org/gitlab/api/models/GitlabAbstractMember.html create mode 100644 org/gitlab/api/models/GitlabAccessLevel.html create mode 100644 org/gitlab/api/models/GitlabBranch.html create mode 100644 org/gitlab/api/models/GitlabBranchCommit.html create mode 100644 org/gitlab/api/models/GitlabBuild.html create mode 100644 org/gitlab/api/models/GitlabCommit.html create mode 100644 org/gitlab/api/models/GitlabCommitComparison.html create mode 100644 org/gitlab/api/models/GitlabCommitDiff.html create mode 100644 org/gitlab/api/models/GitlabCommitStatus.html create mode 100644 org/gitlab/api/models/GitlabGroup.html create mode 100644 org/gitlab/api/models/GitlabGroupMember.html create mode 100644 org/gitlab/api/models/GitlabIssue.Action.html create mode 100644 org/gitlab/api/models/GitlabIssue.html create mode 100644 org/gitlab/api/models/GitlabLabel.html create mode 100644 org/gitlab/api/models/GitlabMergeRequest.html create mode 100644 org/gitlab/api/models/GitlabMilestone.html create mode 100644 org/gitlab/api/models/GitlabNamespace.html create mode 100644 org/gitlab/api/models/GitlabNote.html create mode 100644 org/gitlab/api/models/GitlabPermission.html create mode 100644 org/gitlab/api/models/GitlabProject.html create mode 100644 org/gitlab/api/models/GitlabProjectAccessLevel.html create mode 100644 org/gitlab/api/models/GitlabProjectHook.html create mode 100644 org/gitlab/api/models/GitlabProjectMember.html create mode 100644 org/gitlab/api/models/GitlabRelease.html create mode 100644 org/gitlab/api/models/GitlabRepositoryTree.html create mode 100644 org/gitlab/api/models/GitlabRunner.html create mode 100644 org/gitlab/api/models/GitlabSSHKey.html create mode 100644 org/gitlab/api/models/GitlabSession.html create mode 100644 org/gitlab/api/models/GitlabSystemHook.html create mode 100644 org/gitlab/api/models/GitlabTag.html create mode 100644 org/gitlab/api/models/GitlabUser.html create mode 100644 org/gitlab/api/models/package-frame.html create mode 100644 org/gitlab/api/models/package-summary.html create mode 100644 org/gitlab/api/models/package-tree.html create mode 100644 org/gitlab/api/package-frame.html create mode 100644 org/gitlab/api/package-summary.html create mode 100644 org/gitlab/api/package-tree.html create mode 100644 overview-frame.html create mode 100644 overview-summary.html create mode 100644 overview-tree.html create mode 100644 package-list create mode 100644 script.js create mode 100644 serialized-form.html create mode 100644 stylesheet.css diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 00000000..80f438e4 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +java-gitlab-api-github \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 00000000..96cc43ef --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 00000000..e7bedf33 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 00000000..97626ba4 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 00000000..c7def117 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,23 @@ + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_annotations_2_5_0.xml b/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_annotations_2_5_0.xml new file mode 100644 index 00000000..4e3afd00 --- /dev/null +++ b/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_annotations_2_5_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_core_2_5_3.xml b/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_core_2_5_3.xml new file mode 100644 index 00000000..f1efdd14 --- /dev/null +++ b/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_core_2_5_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_databind_2_5_3.xml b/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_databind_2_5_3.xml new file mode 100644 index 00000000..a687eef1 --- /dev/null +++ b/.idea/libraries/Gradle__com_fasterxml_jackson_core_jackson_databind_2_5_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__commons_io_commons_io_2_4.xml b/.idea/libraries/Gradle__commons_io_commons_io_2_4.xml new file mode 100644 index 00000000..a09dbee2 --- /dev/null +++ b/.idea/libraries/Gradle__commons_io_commons_io_2_4.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__junit_junit_4_12.xml b/.idea/libraries/Gradle__junit_junit_4_12.xml new file mode 100644 index 00000000..04c10dd5 --- /dev/null +++ b/.idea/libraries/Gradle__junit_junit_4_12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__org_hamcrest_hamcrest_all_1_3.xml b/.idea/libraries/Gradle__org_hamcrest_hamcrest_all_1_3.xml new file mode 100644 index 00000000..83550daa --- /dev/null +++ b/.idea/libraries/Gradle__org_hamcrest_hamcrest_all_1_3.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 00000000..a5f348dd --- /dev/null +++ b/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..795c676a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + 1.7 + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..7483d4f3 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..e7e00765 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,1058 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1454209666854 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/allclasses-frame.html b/allclasses-frame.html new file mode 100644 index 00000000..075d490b --- /dev/null +++ b/allclasses-frame.html @@ -0,0 +1,55 @@ + + + + + +All Classes + + + + + +

All Classes

+
+ +
+ + diff --git a/allclasses-noframe.html b/allclasses-noframe.html new file mode 100644 index 00000000..3f64332e --- /dev/null +++ b/allclasses-noframe.html @@ -0,0 +1,55 @@ + + + + + +All Classes + + + + + +

All Classes

+
+ +
+ + diff --git a/constant-values.html b/constant-values.html new file mode 100644 index 00000000..81bad9ad --- /dev/null +++ b/constant-values.html @@ -0,0 +1,561 @@ + + + + + +Constant Field Values + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

org.gitlab.*

+ + +
+ +
+ + + + + + + +
+ + + + diff --git a/deprecated-list.html b/deprecated-list.html new file mode 100644 index 00000000..bcedf045 --- /dev/null +++ b/deprecated-list.html @@ -0,0 +1,159 @@ + + + + + +Deprecated List + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+ +
+
+ + + +
+ +
+ + + + + + + +
+ + + + diff --git a/help-doc.html b/help-doc.html new file mode 100644 index 00000000..50f4ef7c --- /dev/null +++ b/help-doc.html @@ -0,0 +1,223 @@ + + + + + +API Help + + + + + + + + +
+ + + + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + + + +
+ + + + diff --git a/index-all.html b/index-all.html new file mode 100644 index 00000000..5050847c --- /dev/null +++ b/index-all.html @@ -0,0 +1,1863 @@ + + + + + +Index + + + + + + + + +
+ + + + + + + +
+ + +
A B C D E F G I K M O P R S T U V  + + +

A

+
+
acceptMergeRequest(GitlabProject, Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
accessValue - Variable in enum org.gitlab.api.models.GitlabAccessLevel
+
 
+
addGroupMember(GitlabGroup, GitlabUser, GitlabAccessLevel) - Method in class org.gitlab.api.GitlabAPI
+
+
Add a group member.
+
+
addGroupMember(Integer, Integer, GitlabAccessLevel) - Method in class org.gitlab.api.GitlabAPI
+
+
Add a group member.
+
+
addProjectHook(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
addProjectHook(Serializable, String, boolean, boolean, boolean, boolean) - Method in class org.gitlab.api.GitlabAPI
+
 
+
addProjectMember(GitlabProject, GitlabUser, GitlabAccessLevel) - Method in class org.gitlab.api.GitlabAPI
+
+
Add a project member.
+
+
addProjectMember(Integer, Integer, GitlabAccessLevel) - Method in class org.gitlab.api.GitlabAPI
+
+
Add a project member.
+
+
addSystemHook(String) - Method in class org.gitlab.api.GitlabAPI
+
+
Add new system hook hook
+
+
addTag(Serializable, String, String, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Create tag in specific project
+
+
addTag(GitlabProject, String, String, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Create tag in specific project
+
+
asQuery() - Method in class org.gitlab.api.Pagination
+
 
+
AuthMethod - Enum in org.gitlab.api
+
 
+
+ + + +

B

+
+
BLOCK_URL - Static variable in class org.gitlab.api.models.GitlabUser
+
 
+
blockUser(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Block a user
+
+
+ + + +

C

+
+
CommitComment - Class in org.gitlab.api.models
+
 
+
CommitComment() - Constructor for class org.gitlab.api.models.CommitComment
+
 
+
compareCommits(Serializable, String, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
compareCommits(Serializable, String, String, Pagination) - Method in class org.gitlab.api.GitlabAPI
+
 
+
connect(String, String, String) - Static method in class org.gitlab.api.GitlabAPI
+
 
+
connect(String, String) - Static method in class org.gitlab.api.GitlabAPI
+
 
+
connect(String, String, TokenType) - Static method in class org.gitlab.api.GitlabAPI
+
 
+
connect(String, String, TokenType, AuthMethod) - Static method in class org.gitlab.api.GitlabAPI
+
 
+
createBranch(GitlabProject, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Create Branch.
+
+
createBranch(Serializable, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Create Branch.
+
+
createCommitComment(Integer, String, String, String, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Post comment to commit
+
+
createCommitStatus(GitlabProject, String, String, String, String, String, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
createDeployKey(Integer, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Create a new deploy key for the project
+
+
createGroup(String) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Group
+
+
createGroup(String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Group
+
+
createGroup(String, String, String, GitlabAccessLevel) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Group
+
+
createGroup(String, String, String, GitlabAccessLevel, GitlabUser) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Group
+
+
createGroupViaSudo(String, String, GitlabUser) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Group
+
+
createIssue(int, int, int, String, String, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
createLabel(Serializable, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a new label.
+
+
createLabel(Serializable, GitlabLabel) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a new label.
+
+
createMergeRequest(Serializable, String, String, Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Create a new MergeRequest
+
+
createMilestone(Serializable, String, String, Date) - Method in class org.gitlab.api.GitlabAPI
+
+
Cretaes a new project milestone.
+
+
createMilestone(Serializable, GitlabMilestone) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a new project milestone.
+
+
createNote(GitlabMergeRequest, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
createNote(Serializable, Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
createNote(GitlabIssue, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
createProject(String) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a private Project
+
+
createProject(String, Integer, String, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Project
+
+
createSSHKey(Integer, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Create a new ssh key for the user
+
+
createUser(String, String, String, String, String, String, String, String, Integer, String, String, String, Boolean, Boolean, Boolean) - Method in class org.gitlab.api.GitlabAPI
+
+
Create a new User
+
+
createUserProject(Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Project for a specific User
+
+
createUserProject(Integer, String, String, String, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Creates a Project for a specific User
+
+
+ + + +

D

+
+
deleteBranch(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete Branch.
+
+
deleteDeployKey(Integer, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a deploy key for a project
+
+
deleteGroup(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a group.
+
+
deleteGroupMember(GitlabGroup, GitlabUser) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a group member.
+
+
deleteGroupMember(Integer, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a group member.
+
+
deleteLabel(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Deletes an existing label.
+
+
deleteLabel(Serializable, GitlabLabel) - Method in class org.gitlab.api.GitlabAPI
+
+
Deletes an existing label.
+
+
deleteProject(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a Project.
+
+
deleteProjectHook(GitlabProjectHook) - Method in class org.gitlab.api.GitlabAPI
+
 
+
deleteProjectHook(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
deleteProjectMember(GitlabProject, GitlabUser) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a project team member.
+
+
deleteProjectMember(Integer, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a project team member.
+
+
deleteSSHKey(Integer, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete user's ssh key
+
+
deleteSystemHook(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete system hook
+
+
deleteTag(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete tag in specific project
+
+
deleteTag(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete tag in specific project
+
+
deleteUser(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Delete a user
+
+
dispatch() - Method in class org.gitlab.api.GitlabAPI
+
 
+
+ + + +

E

+
+
editIssue(int, int, int, int, String, String, String, GitlabIssue.Action) - Method in class org.gitlab.api.GitlabAPI
+
 
+
editProjectHook(GitlabProject, String, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
equals(Object) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
equals(Object) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
+ + + +

F

+
+
findUsers(String) - Method in class org.gitlab.api.GitlabAPI
+
+
Finds users by email address or username.
+
+
fromAccessValue(int) - Static method in enum org.gitlab.api.models.GitlabAccessLevel
+
 
+
+ + + +

G

+
+
getAccessLevel() - Method in class org.gitlab.api.models.GitlabAbstractMember
+
 
+
getAccessLevel() - Method in class org.gitlab.api.models.GitlabProjectAccessLevel
+
 
+
getActive() - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
getAllCommits(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getAllCommits(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getAllCommits(Serializable, Pagination, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getAllMergeRequests(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getAllNotes(GitlabMergeRequest) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getAllProjects() - Method in class org.gitlab.api.GitlabAPI
+
+
Get's all projects in Gitlab, requires sudo user
+
+
getAMode() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getAPIUrl(String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getAssignee() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getAssignee() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getAttachment() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
getAuthor() - Method in class org.gitlab.api.models.CommitComment
+
 
+
getAuthor() - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
getAuthor() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getAuthor() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getAuthor() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getAuthor() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
getAuthoredDate() - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
getAuthorEmail() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getAuthorName() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getAvatarUrl() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getAvatarUrl() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getBio() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getBMode() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getBody() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
getBranch(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getBranches(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getBranches(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getBuildArtifact(GitlabProject, GitlabBuild) - Method in class org.gitlab.api.GitlabAPI
+
+
Get build artifacts of a project build
+
+
getBuildArtifact(Integer, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Get build artifacts of a project build
+
+
getChanges() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getColor() - Method in class org.gitlab.api.models.GitlabLabel
+
+
Gets the color of a label as six digit HTML hex value.
+
+
getColorSchemeId() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getCommit(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommit() - Method in class org.gitlab.api.models.GitlabBranch
+
 
+
getCommit() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getCommit() - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
getCommit() - Method in class org.gitlab.api.models.GitlabTag
+
 
+
getCommitBuilds(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommitBuilds(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommitComments(Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Get the comments of a commit
+
+
getCommitDiffs(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommitDiffs(Serializable, String, Pagination) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommits(GitlabMergeRequest) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommits(GitlabMergeRequest, Pagination) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommits(Serializable, Pagination, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommits() - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
getCommitStatuses(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommitStatuses(GitlabProject, String, Pagination) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getCommittedDate() - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
getCommitter() - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
getCompareSameRef() - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
getCompareTimeout() - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
getCoverage() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabSystemHook
+
 
+
getCreatedAt() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getCreatedDate() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getCreatorId() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getCurrentSession() - Method in class org.gitlab.api.GitlabAPI
+
 
+
getDefaultBranch() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getDeletedFile() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getDeployKeys(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets all deploy keys for a project
+
+
getDescription() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabRelease
+
 
+
getDescription() - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
getDiff() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getDiffs() - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
getDownloadUrl() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getDownvotes() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getDueDate() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getEmail() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getExternProviderName() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getExternUid() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getFileArchive(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
+
Get an archive of the repository
+
+
getFinishedAt() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getFinishedAt() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getForksCount() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getGroup(Integer) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getGroupMembers(GitlabGroup) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets all members of a Group
+
+
getGroupMembers(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets all members of a Group
+
+
getGroupProjects(GitlabGroup) - Method in class org.gitlab.api.GitlabAPI
+
+
Get all the projects for a group.
+
+
getGroupProjects(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Get all the projects for a group.
+
+
getGroups() - Method in class org.gitlab.api.GitlabAPI
+
 
+
getHttpUrl() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabSystemHook
+
 
+
getId() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getIid() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getIid() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getIid() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getIssue(Serializable, Integer) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getIssueEvents() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
getIssues(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getKey() - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
getLabels(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets labels associated with a project.
+
+
getLabels(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets labels associated with a project.
+
+
getLabels() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getLabels() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getLastActivityAt() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getLastCommits(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getLastCommits(Serializable, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getLdapAccess() - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
getLdapCn() - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
getLine() - Method in class org.gitlab.api.models.CommitComment
+
 
+
getLineType() - Method in class org.gitlab.api.models.CommitComment
+
 
+
getLinkedin() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getMergeRequest(GitlabProject, Integer) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getMergeRequestByIid(Serializable, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Return Merge Request.
+
+
getMergeRequestChanges(Serializable, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Return a Merge Request including its changes.
+
+
getMergeRequests(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getMergeRequests(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getMergeStatus() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getMessage() - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
getMessage() - Method in class org.gitlab.api.models.GitlabTag
+
 
+
getMilestone() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getMilestone() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getMilestoneId() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
+
Deprecated.
+
+
getMilestones(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getMilestones(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getMode() - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabBranch
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabLabel
+
+
Gets the name (text) of a label.
+
+
getName() - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabTag
+
 
+
getName() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getNamespace() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getNamespaceMembers(GitlabNamespace) - Method in class org.gitlab.api.GitlabAPI
+
+
This will fail, if the given namespace is a user and not a group
+
+
getNamespaceMembers(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
This will fail, if the given namespace is a user and not a group
+
+
getNameWithNamespace() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getNewFile() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getNewPath() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getNoficationLevel() - Method in class org.gitlab.api.models.GitlabProjectAccessLevel
+
 
+
getNote(GitlabMergeRequest, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Get a Note from a Merge Request.
+
+
getNote() - Method in class org.gitlab.api.models.CommitComment
+
 
+
getNotes(GitlabMergeRequest) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getNotes(GitlabIssue) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getOldPath() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getOpenMergeRequests(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getOpenMergeRequests(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getOwner() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getOwnerId() - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
getParentIds() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getPath() - Method in class org.gitlab.api.models.CommitComment
+
 
+
getPath() - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
getPath() - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
getPath() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getPathWithNamespace() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getPermissions() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getPrivateToken() - Method in class org.gitlab.api.models.GitlabSession
+
 
+
getPrivateToken() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getProject(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getProjectAccess() - Method in class org.gitlab.api.models.GitlabPermission
+
 
+
getProjectBuild(Integer, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets a build for a project
+
+
getProjectBuilds(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets a list of a project's builds in Gitlab
+
+
getProjectBuilds(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets a list of a project's builds in Gitlab
+
+
getProjectGroupAccess() - Method in class org.gitlab.api.models.GitlabPermission
+
 
+
getProjectHook(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getProjectHooks(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getProjectHooks(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getProjectId() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getProjectId() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getProjectId() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getProjectId() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
getProjectMembers(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getProjectMembers(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getProjects() - Method in class org.gitlab.api.GitlabAPI
+
+
Get a list of projects accessible by the authenticated user.
+
+
getProjectsViaSudo(GitlabUser) - Method in class org.gitlab.api.GitlabAPI
+
+
Get a list of projects accessible by the authenticated user.
+
+
getProvider() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getPushEvents() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
getRawBlobContent(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Get the raw file contents for a blob by blob SHA.
+
+
getRawFileContent(GitlabProject, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Get raw file content
+
+
getRawFileContent(Integer, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Get raw file content
+
+
getRef() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getRef() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getRelease() - Method in class org.gitlab.api.models.GitlabTag
+
 
+
getRenamedFile() - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
getRepositoryTree(GitlabProject, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Get an archive of the repository
+
+
getRequestTimeout() - Method in class org.gitlab.api.GitlabAPI
+
 
+
getResponseCode() - Method in exception org.gitlab.api.GitlabAPIException
+
 
+
getRunner() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getSha() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getShared() - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
getShortId() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getSkype() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getSourceBranch() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getSourceProjectId() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getSSHKey(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Get key with user information by ID of an SSH key.
+
+
getSSHKeys(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Gets all ssh keys for a user
+
+
getSshUrl() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getStage() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getStarCount() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getStartedAt() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getStartedAt() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getState() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getState() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getState() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getState() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getStatus() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getStatus() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getSystemHooks() - Method in class org.gitlab.api.GitlabAPI
+
+
Get list of system hooks
+
+
getTag() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getTagList() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getTagName() - Method in class org.gitlab.api.models.GitlabRelease
+
 
+
getTags(Serializable) - Method in class org.gitlab.api.GitlabAPI
+
+
Get a list of tags in specific project
+
+
getTags(GitlabProject) - Method in class org.gitlab.api.GitlabAPI
+
+
Get a list of tags in specific project
+
+
getTargetBranch() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getTargetProjectId() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getTargetUrl() - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
getThemeId() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getTitle() - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
getTitle() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getTitle() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getTitle() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getTitle() - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
getTokenHeaderFormat() - Method in enum org.gitlab.api.TokenType
+
 
+
getTokenHeaderName() - Method in enum org.gitlab.api.TokenType
+
 
+
getTokenParamName() - Method in enum org.gitlab.api.TokenType
+
 
+
getTree() - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
getTwitter() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getType() - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
getUpdatedAt() - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
getUpdatedAt() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getUpdatedAt() - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
getUpdatedDate() - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
getUpvotes() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
getUrl(String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getUrl() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
getUrl() - Method in class org.gitlab.api.models.GitlabSystemHook
+
 
+
getUser() - Method in class org.gitlab.api.GitlabAPI
+
+
Return API User
+
+
getUser(Integer) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getUser() - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
getUser() - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
getUsername() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getUsers() - Method in class org.gitlab.api.GitlabAPI
+
 
+
getUserViaSudo(String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
getVisibilityLevel() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
getWebsiteUrl() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
getWebUrl() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
GitlabAbstractMember - Class in org.gitlab.api.models
+
 
+
GitlabAbstractMember() - Constructor for class org.gitlab.api.models.GitlabAbstractMember
+
 
+
GitlabAccessLevel - Enum in org.gitlab.api.models
+
 
+
GitlabAPI - Class in org.gitlab.api
+
+
Gitlab API Wrapper class
+
+
GitlabAPIException - Exception in org.gitlab.api
+
+
Gitlab API Exception
+
+
GitlabAPIException(String, Integer, Throwable) - Constructor for exception org.gitlab.api.GitlabAPIException
+
 
+
GitlabBranch - Class in org.gitlab.api.models
+
 
+
GitlabBranch() - Constructor for class org.gitlab.api.models.GitlabBranch
+
 
+
GitlabBranchCommit - Class in org.gitlab.api.models
+
 
+
GitlabBranchCommit() - Constructor for class org.gitlab.api.models.GitlabBranchCommit
+
 
+
GitlabBuild - Class in org.gitlab.api.models
+
 
+
GitlabBuild() - Constructor for class org.gitlab.api.models.GitlabBuild
+
 
+
GitlabCommit - Class in org.gitlab.api.models
+
 
+
GitlabCommit() - Constructor for class org.gitlab.api.models.GitlabCommit
+
 
+
GitlabCommitComparison - Class in org.gitlab.api.models
+
 
+
GitlabCommitComparison() - Constructor for class org.gitlab.api.models.GitlabCommitComparison
+
 
+
GitlabCommitDiff - Class in org.gitlab.api.models
+
 
+
GitlabCommitDiff() - Constructor for class org.gitlab.api.models.GitlabCommitDiff
+
 
+
GitlabCommitStatus - Class in org.gitlab.api.models
+
 
+
GitlabCommitStatus() - Constructor for class org.gitlab.api.models.GitlabCommitStatus
+
 
+
GitlabGroup - Class in org.gitlab.api.models
+
 
+
GitlabGroup() - Constructor for class org.gitlab.api.models.GitlabGroup
+
 
+
GitlabGroupMember - Class in org.gitlab.api.models
+
 
+
GitlabGroupMember() - Constructor for class org.gitlab.api.models.GitlabGroupMember
+
 
+
GitlabIssue - Class in org.gitlab.api.models
+
 
+
GitlabIssue() - Constructor for class org.gitlab.api.models.GitlabIssue
+
 
+
GitlabIssue.Action - Enum in org.gitlab.api.models
+
 
+
GitlabLabel - Class in org.gitlab.api.models
+
+
Models a Gitlab label.
+
+
GitlabLabel() - Constructor for class org.gitlab.api.models.GitlabLabel
+
 
+
GitlabMergeRequest - Class in org.gitlab.api.models
+
 
+
GitlabMergeRequest() - Constructor for class org.gitlab.api.models.GitlabMergeRequest
+
 
+
GitlabMilestone - Class in org.gitlab.api.models
+
 
+
GitlabMilestone() - Constructor for class org.gitlab.api.models.GitlabMilestone
+
 
+
GitlabNamespace - Class in org.gitlab.api.models
+
 
+
GitlabNamespace() - Constructor for class org.gitlab.api.models.GitlabNamespace
+
 
+
GitlabNote - Class in org.gitlab.api.models
+
 
+
GitlabNote() - Constructor for class org.gitlab.api.models.GitlabNote
+
 
+
GitlabPermission - Class in org.gitlab.api.models
+
 
+
GitlabPermission() - Constructor for class org.gitlab.api.models.GitlabPermission
+
 
+
GitlabProject - Class in org.gitlab.api.models
+
 
+
GitlabProject() - Constructor for class org.gitlab.api.models.GitlabProject
+
 
+
GitlabProjectAccessLevel - Class in org.gitlab.api.models
+
 
+
GitlabProjectAccessLevel() - Constructor for class org.gitlab.api.models.GitlabProjectAccessLevel
+
 
+
GitlabProjectHook - Class in org.gitlab.api.models
+
 
+
GitlabProjectHook() - Constructor for class org.gitlab.api.models.GitlabProjectHook
+
 
+
GitlabProjectMember - Class in org.gitlab.api.models
+
 
+
GitlabProjectMember() - Constructor for class org.gitlab.api.models.GitlabProjectMember
+
 
+
GitlabRelease - Class in org.gitlab.api.models
+
 
+
GitlabRelease() - Constructor for class org.gitlab.api.models.GitlabRelease
+
 
+
GitlabRepositoryTree - Class in org.gitlab.api.models
+
 
+
GitlabRepositoryTree() - Constructor for class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
GitlabRunner - Class in org.gitlab.api.models
+
 
+
GitlabRunner() - Constructor for class org.gitlab.api.models.GitlabRunner
+
 
+
GitlabSession - Class in org.gitlab.api.models
+
 
+
GitlabSession() - Constructor for class org.gitlab.api.models.GitlabSession
+
 
+
GitlabSSHKey - Class in org.gitlab.api.models
+
 
+
GitlabSSHKey() - Constructor for class org.gitlab.api.models.GitlabSSHKey
+
 
+
GitlabSystemHook - Class in org.gitlab.api.models
+
 
+
GitlabSystemHook() - Constructor for class org.gitlab.api.models.GitlabSystemHook
+
 
+
GitlabTag - Class in org.gitlab.api.models
+
 
+
GitlabTag() - Constructor for class org.gitlab.api.models.GitlabTag
+
 
+
GitlabUser - Class in org.gitlab.api.models
+
 
+
GitlabUser() - Constructor for class org.gitlab.api.models.GitlabUser
+
 
+
+ + + +

I

+
+
ignoreCertificateErrors(boolean) - Method in class org.gitlab.api.GitlabAPI
+
 
+
isAdmin() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
isArchived() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
isBlocked() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
isCanCreateGroup() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
isCanCreateProject() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
isCanCreateTeam() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
isClosed() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
+
Deprecated.
+
+
isDarkScheme() - Method in class org.gitlab.api.models.GitlabUser
+
 
+
isDownvote() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
isIgnoreCertificateErrors() - Method in class org.gitlab.api.GitlabAPI
+
 
+
isIssuesEnabled() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
isMerged() - Method in class org.gitlab.api.models.GitlabMergeRequest
+
+
Deprecated.
+
+
isMergeRequestsEnabled() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
isMergeRequestsEvents() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
isProtected() - Method in class org.gitlab.api.models.GitlabBranch
+
 
+
isPublic() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
isSnippetsEnabled() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
isSslVerificationEnabled() - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
isSystem() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
isUpvote() - Method in class org.gitlab.api.models.GitlabNote
+
 
+
isWallEnabled() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
isWikiEnabled() - Method in class org.gitlab.api.models.GitlabProject
+
 
+
+ + + +

K

+
+
KEYS_URL - Static variable in class org.gitlab.api.models.GitlabSSHKey
+
 
+
+ + + +

M

+
+
MAPPER - Static variable in class org.gitlab.api.GitlabAPI
+
 
+
MAX_ITEMS_PER_PAGE - Static variable in class org.gitlab.api.Pagination
+
 
+
+ + + +

O

+
+
org.gitlab.api - package org.gitlab.api
+
 
+
org.gitlab.api.models - package org.gitlab.api.models
+
 
+
+ + + +

P

+
+
Pagination - Class in org.gitlab.api
+
 
+
Pagination() - Constructor for class org.gitlab.api.Pagination
+
 
+
PARAM_PAGE - Static variable in class org.gitlab.api.Pagination
+
 
+
PARAM_PER_PAGE - Static variable in class org.gitlab.api.Pagination
+
 
+
protectBranch(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
+ + + +

R

+
+
retrieve() - Method in class org.gitlab.api.GitlabAPI
+
 
+
+ + + +

S

+
+
setAccessLevel(GitlabAccessLevel) - Method in class org.gitlab.api.models.GitlabAbstractMember
+
 
+
setAccessLevel(GitlabAccessLevel) - Method in class org.gitlab.api.models.GitlabProjectAccessLevel
+
 
+
setActive(Boolean) - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
setAdmin(boolean) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setAMode(String) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setArchived(boolean) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setAssignee(GitlabUser) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setAssignee(GitlabUser) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setAttachment(String) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setAuthor(GitlabUser) - Method in class org.gitlab.api.models.CommitComment
+
 
+
setAuthor(GitlabUser) - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
setAuthor(GitlabUser) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setAuthor(GitlabUser) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setAuthor(GitlabUser) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setAuthor(GitlabUser) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setAuthoredDate(Date) - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
setAuthorEmail(String) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setAuthorName(String) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setAvatarUrl(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setAvatarUrl(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setBio(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setBlocked(boolean) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setBMode(String) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setBody(String) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setCanCreateGroup(boolean) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setCanCreateProject(boolean) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setCanCreateTeam(boolean) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setChanges(List<GitlabCommitDiff>) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setClosed(boolean) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
+
Deprecated.
+
+
setColor(String) - Method in class org.gitlab.api.models.GitlabLabel
+
+
Sets the color of a label.
+
+
setColorSchemeId(Integer) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setCommit(GitlabBranchCommit) - Method in class org.gitlab.api.models.GitlabBranch
+
 
+
setCommit(GitlabCommit) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setCommit(GitlabCommit) - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
setCommit(GitlabBranchCommit) - Method in class org.gitlab.api.models.GitlabTag
+
 
+
setCommits(List<GitlabCommit>) - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
setCommittedDate(Date) - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
setCommitter(GitlabUser) - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
setCompareSameRef(Boolean) - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
setCompareTimeout(Boolean) - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
setCoverage(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setCreatedAt(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabSystemHook
+
 
+
setCreatedAt(Date) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setCreatedDate(Date) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setCreatorId(Integer) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setDarkScheme(boolean) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setDefaultBranch(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setDeletedFile(boolean) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabRelease
+
 
+
setDescription(String) - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
setDiff(String) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setDiffs(List<GitlabCommitDiff>) - Method in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
setDownloadUrl(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setDownvote(boolean) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setDownvotes(int) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setDueDate(Date) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setEmail(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setExternProviderName(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setExternUid(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setFinishedAt(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setFinishedAt(Date) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setForksCount(Integer) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setHttpUrl(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setId(String) - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setId(String) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setId(String) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
setId(int) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setId(int) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setId(String) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setId(String) - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabSystemHook
+
 
+
setId(Integer) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setIid(int) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setIid(Integer) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setIid(int) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setIssueEvents(boolean) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setIssuesEnabled(boolean) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setKey(String) - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
setLabels(String[]) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setLabels(String[]) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setLastActivityAt(Date) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setLdapAccess(GitlabAccessLevel) - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
setLdapCn(String) - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
setLine(String) - Method in class org.gitlab.api.models.CommitComment
+
 
+
setLineType(String) - Method in class org.gitlab.api.models.CommitComment
+
 
+
setLinkedin(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setMerged(boolean) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
+
Deprecated.
+
+
setMergeRequestsEnabled(boolean) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setMergeRequestsEvents(boolean) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setMergeStatus(String) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setMessage(String) - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
setMessage(String) - Method in class org.gitlab.api.models.GitlabTag
+
 
+
setMilestone(GitlabMilestone) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setMilestone(GitlabMilestone) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setMilestoneId(Integer) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
+
Deprecated.
+
+
setMode(String) - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabBranch
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabLabel
+
+
Sets the name (text) of a label.
+
+
setName(String) - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabTag
+
 
+
setName(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setNamespace(GitlabNamespace) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setNameWithNamespace(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setNewFile(boolean) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setNewPath(String) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setNoficationLevel(int) - Method in class org.gitlab.api.models.GitlabProjectAccessLevel
+
 
+
setNote(String) - Method in class org.gitlab.api.models.CommitComment
+
 
+
setOldPath(String) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setOwner(GitlabUser) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setOwnerId(Integer) - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
setPage(int) - Method in class org.gitlab.api.Pagination
+
 
+
setParentIds(List<String>) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setPath(String) - Method in class org.gitlab.api.models.CommitComment
+
 
+
setPath(String) - Method in class org.gitlab.api.models.GitlabGroup
+
 
+
setPath(String) - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
setPath(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setPathWithNamespace(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setPermissions(GitlabPermission) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setPerPage(int) - Method in class org.gitlab.api.Pagination
+
 
+
setPrivateToken(String) - Method in class org.gitlab.api.models.GitlabSession
+
 
+
setPrivateToken(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setProjectId(int) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setProjectId(Integer) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setProjectId(int) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setProjectId(Integer) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setProtected(boolean) - Method in class org.gitlab.api.models.GitlabBranch
+
 
+
setProvider(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setPublic(boolean) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setPushEvents(boolean) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setRef(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setRef(String) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setRelease(GitlabRelease) - Method in class org.gitlab.api.models.GitlabTag
+
 
+
setRenamedFile(boolean) - Method in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
setRequestTimeout(int) - Method in class org.gitlab.api.GitlabAPI
+
 
+
setRunner(GitlabRunner) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setSha(String) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setShared(Boolean) - Method in class org.gitlab.api.models.GitlabRunner
+
 
+
setShortId(String) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setSkype(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setSnippetsEnabled(boolean) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setSourceBranch(String) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setSourceProjectId(Integer) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setSshUrl(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setSslVerificationEnabled(boolean) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setStage(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setStarCount(Integer) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setStartedAt(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setStartedAt(Date) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setState(String) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setState(String) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setState(String) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setState(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setStatus(String) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setStatus(String) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setSystem(boolean) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setTag(Boolean) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setTagList(List<String>) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setTagName(String) - Method in class org.gitlab.api.models.GitlabRelease
+
 
+
setTargetBranch(String) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setTargetProjectId(Integer) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setTargetUrl(String) - Method in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
setThemeId(Integer) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setTitle(String) - Method in class org.gitlab.api.models.GitlabCommit
+
 
+
setTitle(String) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setTitle(String) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setTitle(String) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setTitle(String) - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
setTree(String) - Method in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
setTwitter(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setType(String) - Method in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
setUpdatedAt(Date) - Method in class org.gitlab.api.models.GitlabIssue
+
 
+
setUpdatedAt(Date) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setUpdatedAt(Date) - Method in class org.gitlab.api.models.GitlabNamespace
+
 
+
setUpdatedDate(Date) - Method in class org.gitlab.api.models.GitlabMilestone
+
 
+
setUpvote(boolean) - Method in class org.gitlab.api.models.GitlabNote
+
 
+
setUpvotes(int) - Method in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
setUrl(String) - Method in class org.gitlab.api.models.GitlabProjectHook
+
 
+
setUrl(String) - Method in class org.gitlab.api.models.GitlabSystemHook
+
 
+
setUser(GitlabUser) - Method in class org.gitlab.api.models.GitlabBuild
+
 
+
setUser(GitlabUser) - Method in class org.gitlab.api.models.GitlabSSHKey
+
 
+
setUsername(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setVisibilityLevel(Integer) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setWallEnabled(boolean) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setWebsiteUrl(String) - Method in class org.gitlab.api.models.GitlabUser
+
 
+
setWebUrl(String) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
setWikiEnabled(boolean) - Method in class org.gitlab.api.models.GitlabProject
+
 
+
STATE_CLOSED - Static variable in class org.gitlab.api.models.GitlabIssue
+
 
+
STATE_OPENED - Static variable in class org.gitlab.api.models.GitlabIssue
+
 
+
+ + + +

T

+
+
testSystemHook(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Test system hook
+
+
TokenType - Enum in org.gitlab.api
+
 
+
toString() - Method in class org.gitlab.api.Pagination
+
 
+
transfer(Integer, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Transfer a project to the given namespace
+
+
+ + + +

U

+
+
UNBLOCK_URL - Static variable in class org.gitlab.api.models.GitlabUser
+
 
+
unblockUser(Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Unblock a user
+
+
unprotectBranch(GitlabProject, String) - Method in class org.gitlab.api.GitlabAPI
+
 
+
updateLabel(Serializable, String, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Updates an existing label.
+
+
updateMergeRequest(Serializable, Integer, String, Integer, String, String, String, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Updates a Merge Request
+
+
updateMilestone(Serializable, int, String, String, Date, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Updates an existing project milestone.
+
+
updateMilestone(Serializable, GitlabMilestone, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Updates an existing project milestone.
+
+
updateMilestone(GitlabMilestone, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Updates an existing project milestone.
+
+
updateNote(GitlabMergeRequest, Integer, String) - Method in class org.gitlab.api.GitlabAPI
+
+
Update a Merge Request Note
+
+
updateProject(Integer, String, String, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Integer) - Method in class org.gitlab.api.GitlabAPI
+
+
Updates a Project
+
+
updateUser(Integer, String, String, String, String, String, String, String, String, Integer, String, String, String, Boolean, Boolean) - Method in class org.gitlab.api.GitlabAPI
+
+
Update a user
+
+
URL - Static variable in class org.gitlab.api.models.CommitComment
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabAbstractMember
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabBranch
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabBranchCommit
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabBuild
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabCommit
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabCommitComparison
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabCommitDiff
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabCommitStatus
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabGroup
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabIssue
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabLabel
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabMergeRequest
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabMilestone
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabNamespace
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabNote
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabProject
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabProjectHook
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabRepositoryTree
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabSession
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabSystemHook
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabTag
+
 
+
URL - Static variable in class org.gitlab.api.models.GitlabUser
+
 
+
USER_URL - Static variable in class org.gitlab.api.models.GitlabUser
+
 
+
USERS_URL - Static variable in class org.gitlab.api.models.GitlabUser
+
 
+
+ + + +

V

+
+
valueOf(String) - Static method in enum org.gitlab.api.AuthMethod
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum org.gitlab.api.models.GitlabAccessLevel
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum org.gitlab.api.models.GitlabIssue.Action
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum org.gitlab.api.TokenType
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum org.gitlab.api.AuthMethod
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum org.gitlab.api.models.GitlabAccessLevel
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum org.gitlab.api.models.GitlabIssue.Action
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum org.gitlab.api.TokenType
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
+A B C D E F G I K M O P R S T U V 
+ +
+ + + + + + + +
+ + + + diff --git a/index.html b/index.html new file mode 100644 index 00000000..f81f7c5c --- /dev/null +++ b/index.html @@ -0,0 +1,74 @@ + + + + + +Generated Documentation (Untitled) + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/org/gitlab/api/AuthMethod.html b/org/gitlab/api/AuthMethod.html new file mode 100644 index 00000000..37740e7c --- /dev/null +++ b/org/gitlab/api/AuthMethod.html @@ -0,0 +1,339 @@ + + + + + +AuthMethod + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api
+

Enum AuthMethod

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<AuthMethod>
    +
    +
    +
    +
    public enum AuthMethod
    +extends java.lang.Enum<AuthMethod>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      HEADER 
      URL_PARAMETER 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static AuthMethodvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static AuthMethod[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Detail

      + + + +
        +
      • +

        HEADER

        +
        public static final AuthMethod HEADER
        +
      • +
      + + + +
        +
      • +

        URL_PARAMETER

        +
        public static final AuthMethod URL_PARAMETER
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static AuthMethod[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (AuthMethod c : AuthMethod.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static AuthMethod valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/GitlabAPI.html b/org/gitlab/api/GitlabAPI.html new file mode 100644 index 00000000..07ffbb96 --- /dev/null +++ b/org/gitlab/api/GitlabAPI.html @@ -0,0 +1,4214 @@ + + + + + +GitlabAPI + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api
+

Class GitlabAPI

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabAPI
    +extends java.lang.Object
    +
    Gitlab API Wrapper class
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        MAPPER

        +
        public static final ObjectMapper MAPPER
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        connect

        +
        public static GitlabSession connect(java.lang.String hostUrl,
        +                                    java.lang.String username,
        +                                    java.lang.String password)
        +                             throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        connect

        +
        public static GitlabAPI connect(java.lang.String hostUrl,
        +                                java.lang.String apiToken)
        +
      • +
      + + + +
        +
      • +

        connect

        +
        public static GitlabAPI connect(java.lang.String hostUrl,
        +                                java.lang.String apiToken,
        +                                TokenType tokenType)
        +
      • +
      + + + +
        +
      • +

        connect

        +
        public static GitlabAPI connect(java.lang.String hostUrl,
        +                                java.lang.String apiToken,
        +                                TokenType tokenType,
        +                                AuthMethod method)
        +
      • +
      + + + +
        +
      • +

        ignoreCertificateErrors

        +
        public GitlabAPI ignoreCertificateErrors(boolean ignoreCertificateErrors)
        +
      • +
      + + + +
        +
      • +

        getRequestTimeout

        +
        public int getRequestTimeout()
        +
      • +
      + + + +
        +
      • +

        setRequestTimeout

        +
        public GitlabAPI setRequestTimeout(int requestTimeout)
        +
      • +
      + + + +
        +
      • +

        retrieve

        +
        public org.gitlab.api.http.GitlabHTTPRequestor retrieve()
        +
      • +
      + + + +
        +
      • +

        dispatch

        +
        public org.gitlab.api.http.GitlabHTTPRequestor dispatch()
        +
      • +
      + + + +
        +
      • +

        isIgnoreCertificateErrors

        +
        public boolean isIgnoreCertificateErrors()
        +
      • +
      + + + +
        +
      • +

        getAPIUrl

        +
        public java.net.URL getAPIUrl(java.lang.String tailAPIUrl)
        +                       throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getUrl

        +
        public java.net.URL getUrl(java.lang.String tailAPIUrl)
        +                    throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getUsers

        +
        public java.util.List<GitlabUser> getUsers()
        +                                    throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        findUsers

        +
        public java.util.List<GitlabUser> findUsers(java.lang.String emailOrUsername)
        +                                     throws java.io.IOException
        +
        Finds users by email address or username.
        +
        +
        Parameters:
        +
        emailOrUsername - Some portion of the email address or username
        +
        Returns:
        +
        A non-null List of GitlabUser instances. If the search term is + null or empty a List with zero GitlabUsers is returned.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getUser

        +
        public GitlabUser getUser()
        +                   throws java.io.IOException
        +
        Return API User
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getUser

        +
        public GitlabUser getUser(java.lang.Integer userId)
        +                   throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getUserViaSudo

        +
        public GitlabUser getUserViaSudo(java.lang.String username)
        +                          throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createUser

        +
        public GitlabUser createUser(java.lang.String email,
        +                             java.lang.String password,
        +                             java.lang.String username,
        +                             java.lang.String fullName,
        +                             java.lang.String skypeId,
        +                             java.lang.String linkedIn,
        +                             java.lang.String twitter,
        +                             java.lang.String website_url,
        +                             java.lang.Integer projects_limit,
        +                             java.lang.String extern_uid,
        +                             java.lang.String extern_provider_name,
        +                             java.lang.String bio,
        +                             java.lang.Boolean isAdmin,
        +                             java.lang.Boolean can_create_group,
        +                             java.lang.Boolean skip_confirmation)
        +                      throws java.io.IOException
        +
        Create a new User
        +
        +
        Parameters:
        +
        email - User email
        +
        password - Password
        +
        username - User name
        +
        fullName - Full name
        +
        skypeId - Skype Id
        +
        linkedIn - LinkedIn
        +
        twitter - Twitter
        +
        website_url - Website URL
        +
        projects_limit - Projects limit
        +
        extern_uid - External User ID
        +
        extern_provider_name - External Provider Name
        +
        bio - Bio
        +
        isAdmin - Is Admin
        +
        can_create_group - Can Create Group
        +
        skip_confirmation - Skip Confirmation
        +
        Returns:
        +
        A GitlabUser
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        See Also:
        +
        http://doc.gitlab.com/ce/api/users.html
        +
        +
      • +
      + + + +
        +
      • +

        updateUser

        +
        public GitlabUser updateUser(java.lang.Integer targetUserId,
        +                             java.lang.String email,
        +                             java.lang.String password,
        +                             java.lang.String username,
        +                             java.lang.String fullName,
        +                             java.lang.String skypeId,
        +                             java.lang.String linkedIn,
        +                             java.lang.String twitter,
        +                             java.lang.String website_url,
        +                             java.lang.Integer projects_limit,
        +                             java.lang.String extern_uid,
        +                             java.lang.String extern_provider_name,
        +                             java.lang.String bio,
        +                             java.lang.Boolean isAdmin,
        +                             java.lang.Boolean can_create_group)
        +                      throws java.io.IOException
        +
        Update a user
        +
        +
        Parameters:
        +
        targetUserId - User ID
        +
        email - User email
        +
        password - Password
        +
        username - User name
        +
        fullName - Full name
        +
        skypeId - Skype Id
        +
        linkedIn - LinkedIn
        +
        twitter - Twitter
        +
        website_url - Website URL
        +
        projects_limit - Projects limit
        +
        extern_uid - External User ID
        +
        extern_provider_name - External Provider Name
        +
        bio - Bio
        +
        isAdmin - Is Admin
        +
        can_create_group - Can Create Group
        +
        Returns:
        +
        The Updated User
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        blockUser

        +
        public void blockUser(java.lang.Integer targetUserId)
        +               throws java.io.IOException
        +
        Block a user
        +
        +
        Parameters:
        +
        targetUserId - The id of the Gitlab user
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        unblockUser

        +
        public void unblockUser(java.lang.Integer targetUserId)
        +                 throws java.io.IOException
        +
        Unblock a user
        +
        +
        Parameters:
        +
        targetUserId - The id of the Gitlab user
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createSSHKey

        +
        public GitlabSSHKey createSSHKey(java.lang.Integer targetUserId,
        +                                 java.lang.String title,
        +                                 java.lang.String key)
        +                          throws java.io.IOException
        +
        Create a new ssh key for the user
        +
        +
        Parameters:
        +
        targetUserId - The id of the Gitlab user
        +
        title - The title of the ssh key
        +
        key - The public key
        +
        Returns:
        +
        The new GitlabSSHKey
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteSSHKey

        +
        public void deleteSSHKey(java.lang.Integer targetUserId,
        +                         java.lang.Integer targetKeyId)
        +                  throws java.io.IOException
        +
        Delete user's ssh key
        +
        +
        Parameters:
        +
        targetUserId - The id of the Gitlab user
        +
        targetKeyId - The id of the Gitlab ssh key
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getSSHKeys

        +
        public java.util.List<GitlabSSHKey> getSSHKeys(java.lang.Integer targetUserId)
        +                                        throws java.io.IOException
        +
        Gets all ssh keys for a user
        +
        +
        Parameters:
        +
        targetUserId - The id of the GitLab User
        +
        Returns:
        +
        The list of user ssh keys
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getSSHKey

        +
        public GitlabSSHKey getSSHKey(java.lang.Integer keyId)
        +                       throws java.io.IOException
        +
        Get key with user information by ID of an SSH key.
        +
        +
        Parameters:
        +
        keyId - The ID of an SSH key
        +
        Returns:
        +
        The SSH key with user information
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteUser

        +
        public void deleteUser(java.lang.Integer targetUserId)
        +                throws java.io.IOException
        +
        Delete a user
        +
        +
        Parameters:
        +
        targetUserId - The target User ID
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getGroup

        +
        public GitlabGroup getGroup(java.lang.Integer groupId)
        +                     throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getGroups

        +
        public java.util.List<GitlabGroup> getGroups()
        +                                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getGroupProjects

        +
        public java.util.List<GitlabProject> getGroupProjects(GitlabGroup group)
        +                                               throws java.io.IOException
        +
        Get all the projects for a group.
        +
        +
        Parameters:
        +
        group - the target group
        +
        Returns:
        +
        a list of projects for the group
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getGroupProjects

        +
        public java.util.List<GitlabProject> getGroupProjects(java.lang.Integer groupId)
        +                                               throws java.io.IOException
        +
        Get all the projects for a group.
        +
        +
        Parameters:
        +
        groupId - the target group's id.
        +
        Returns:
        +
        a list of projects for the group
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getGroupMembers

        +
        public java.util.List<GitlabGroupMember> getGroupMembers(GitlabGroup group)
        +                                                  throws java.io.IOException
        +
        Gets all members of a Group
        +
        +
        Parameters:
        +
        group - The GitLab Group
        +
        Returns:
        +
        The Group Members
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getGroupMembers

        +
        public java.util.List<GitlabGroupMember> getGroupMembers(java.lang.Integer groupId)
        +                                                  throws java.io.IOException
        +
        Gets all members of a Group
        +
        +
        Parameters:
        +
        groupId - The id of the GitLab Group
        +
        Returns:
        +
        The Group Members
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createGroup

        +
        public GitlabGroup createGroup(java.lang.String name)
        +                        throws java.io.IOException
        +
        Creates a Group
        +
        +
        Parameters:
        +
        name - The name of the group. The + name will also be used as the path + of the group.
        +
        Returns:
        +
        The GitLab Group
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createGroup

        +
        public GitlabGroup createGroup(java.lang.String name,
        +                               java.lang.String path)
        +                        throws java.io.IOException
        +
        Creates a Group
        +
        +
        Parameters:
        +
        name - The name of the group
        +
        path - The path for the group
        +
        Returns:
        +
        The GitLab Group
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createGroupViaSudo

        +
        public GitlabGroup createGroupViaSudo(java.lang.String name,
        +                                      java.lang.String path,
        +                                      GitlabUser sudoUser)
        +                               throws java.io.IOException
        +
        Creates a Group
        +
        +
        Parameters:
        +
        name - The name of the group
        +
        path - The path for the group
        +
        sudoUser - The user to create the group on behalf of
        +
        Returns:
        +
        The GitLab Group
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createGroup

        +
        public GitlabGroup createGroup(java.lang.String name,
        +                               java.lang.String path,
        +                               java.lang.String ldapCn,
        +                               GitlabAccessLevel ldapAccess)
        +                        throws java.io.IOException
        +
        Creates a Group
        +
        +
        Parameters:
        +
        name - The name of the group
        +
        path - The path for the group
        +
        ldapCn - LDAP Group Name to sync with, null otherwise
        +
        ldapAccess - Access level for LDAP group members, null otherwise
        +
        Returns:
        +
        The GitLab Group
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createGroup

        +
        public GitlabGroup createGroup(java.lang.String name,
        +                               java.lang.String path,
        +                               java.lang.String ldapCn,
        +                               GitlabAccessLevel ldapAccess,
        +                               GitlabUser sudoUser)
        +                        throws java.io.IOException
        +
        Creates a Group
        +
        +
        Parameters:
        +
        name - The name of the group
        +
        path - The path for the group
        +
        ldapCn - LDAP Group Name to sync with, null otherwise
        +
        ldapAccess - Access level for LDAP group members, null otherwise
        +
        sudoUser - The user to create the group on behalf of
        +
        Returns:
        +
        The GitLab Group
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        addGroupMember

        +
        public GitlabGroupMember addGroupMember(GitlabGroup group,
        +                                        GitlabUser user,
        +                                        GitlabAccessLevel accessLevel)
        +                                 throws java.io.IOException
        +
        Add a group member.
        +
        +
        Parameters:
        +
        group - the GitlabGroup
        +
        user - the GitlabUser
        +
        accessLevel - the GitlabAccessLevel
        +
        Returns:
        +
        the GitlabGroupMember
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        addGroupMember

        +
        public GitlabGroupMember addGroupMember(java.lang.Integer groupId,
        +                                        java.lang.Integer userId,
        +                                        GitlabAccessLevel accessLevel)
        +                                 throws java.io.IOException
        +
        Add a group member.
        +
        +
        Parameters:
        +
        groupId - the group id
        +
        userId - the user id
        +
        accessLevel - the GitlabAccessLevel
        +
        Returns:
        +
        the GitlabGroupMember
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteGroupMember

        +
        public void deleteGroupMember(GitlabGroup group,
        +                              GitlabUser user)
        +                       throws java.io.IOException
        +
        Delete a group member.
        +
        +
        Parameters:
        +
        group - the GitlabGroup
        +
        user - the GitlabUser
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteGroupMember

        +
        public void deleteGroupMember(java.lang.Integer groupId,
        +                              java.lang.Integer userId)
        +                       throws java.io.IOException
        +
        Delete a group member.
        +
        +
        Parameters:
        +
        groupId - the group id
        +
        userId - the user id
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteGroup

        +
        public void deleteGroup(java.lang.Integer groupId)
        +                 throws java.io.IOException
        +
        Delete a group.
        +
        +
        Parameters:
        +
        groupId - the group id
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getProject

        +
        public GitlabProject getProject(java.io.Serializable projectId)
        +                         throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjects

        +
        public java.util.List<GitlabProject> getProjects()
        +                                          throws java.io.IOException
        +
        Get a list of projects accessible by the authenticated user.
        +
        +
        Returns:
        +
        A list of gitlab projects
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectsViaSudo

        +
        public java.util.List<GitlabProject> getProjectsViaSudo(GitlabUser user)
        +                                                 throws java.io.IOException
        +
        Get a list of projects accessible by the authenticated user.
        +
        +
        Returns:
        +
        A list of gitlab projects
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getAllProjects

        +
        public java.util.List<GitlabProject> getAllProjects()
        +                                             throws java.io.IOException
        +
        Get's all projects in Gitlab, requires sudo user
        +
        +
        Returns:
        +
        A list of gitlab projects
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectBuilds

        +
        public java.util.List<GitlabBuild> getProjectBuilds(GitlabProject project)
        +                                             throws java.io.IOException
        +
        Gets a list of a project's builds in Gitlab
        +
        +
        Parameters:
        +
        project - the project
        +
        Returns:
        +
        A list of project builds
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectBuilds

        +
        public java.util.List<GitlabBuild> getProjectBuilds(java.lang.Integer projectId)
        +                                             throws java.io.IOException
        +
        Gets a list of a project's builds in Gitlab
        +
        +
        Parameters:
        +
        projectId - the project id
        +
        Returns:
        +
        A list of project builds
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectBuild

        +
        public GitlabBuild getProjectBuild(java.lang.Integer projectId,
        +                                   java.lang.Integer buildId)
        +                            throws java.io.IOException
        +
        Gets a build for a project
        +
        +
        Parameters:
        +
        projectId - the project id
        +
        buildId - the build id
        +
        Returns:
        +
        A list of project builds
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getBuildArtifact

        +
        public byte[] getBuildArtifact(GitlabProject project,
        +                               GitlabBuild build)
        +                        throws java.io.IOException
        +
        Get build artifacts of a project build
        +
        +
        Parameters:
        +
        project - The Project
        +
        build - The build
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getBuildArtifact

        +
        public byte[] getBuildArtifact(java.lang.Integer projectId,
        +                               java.lang.Integer buildId)
        +                        throws java.io.IOException
        +
        Get build artifacts of a project build
        +
        +
        Parameters:
        +
        projectId - The Project's Id
        +
        buildId - The build's Id
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createProject

        +
        public GitlabProject createProject(java.lang.String name)
        +                            throws java.io.IOException
        +
        Creates a private Project
        +
        +
        Parameters:
        +
        name - The name of the project
        +
        Returns:
        +
        The GitLab Project
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createProject

        +
        public GitlabProject createProject(java.lang.String name,
        +                                   java.lang.Integer namespaceId,
        +                                   java.lang.String description,
        +                                   java.lang.Boolean issuesEnabled,
        +                                   java.lang.Boolean wallEnabled,
        +                                   java.lang.Boolean mergeRequestsEnabled,
        +                                   java.lang.Boolean wikiEnabled,
        +                                   java.lang.Boolean snippetsEnabled,
        +                                   java.lang.Boolean publik,
        +                                   java.lang.Integer visibilityLevel,
        +                                   java.lang.String importUrl)
        +                            throws java.io.IOException
        +
        Creates a Project
        +
        +
        Parameters:
        +
        name - The name of the project
        +
        namespaceId - The Namespace for the new project, otherwise null indicates to use the GitLab default (user)
        +
        description - A description for the project, null otherwise
        +
        issuesEnabled - Whether Issues should be enabled, otherwise null indicates to use GitLab default
        +
        wallEnabled - Whether The Wall should be enabled, otherwise null indicates to use GitLab default
        +
        mergeRequestsEnabled - Whether Merge Requests should be enabled, otherwise null indicates to use GitLab default
        +
        wikiEnabled - Whether a Wiki should be enabled, otherwise null indicates to use GitLab default
        +
        snippetsEnabled - Whether Snippets should be enabled, otherwise null indicates to use GitLab default
        +
        publik - Whether the project is public or private, if true same as setting visibilityLevel = 20, otherwise null indicates to use GitLab default
        +
        visibilityLevel - The visibility level of the project, otherwise null indicates to use GitLab default
        +
        importUrl - The Import URL for the project, otherwise null
        +
        Returns:
        +
        the Gitlab Project
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createUserProject

        +
        public GitlabProject createUserProject(java.lang.Integer userId,
        +                                       java.lang.String name)
        +                                throws java.io.IOException
        +
        Creates a Project for a specific User
        +
        +
        Parameters:
        +
        userId - The id of the user to create the project for
        +
        name - The name of the project
        +
        Returns:
        +
        The GitLab Project
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createUserProject

        +
        public GitlabProject createUserProject(java.lang.Integer userId,
        +                                       java.lang.String name,
        +                                       java.lang.String description,
        +                                       java.lang.String defaultBranch,
        +                                       java.lang.Boolean issuesEnabled,
        +                                       java.lang.Boolean wallEnabled,
        +                                       java.lang.Boolean mergeRequestsEnabled,
        +                                       java.lang.Boolean wikiEnabled,
        +                                       java.lang.Boolean snippetsEnabled,
        +                                       java.lang.Boolean publik,
        +                                       java.lang.Integer visibilityLevel,
        +                                       java.lang.String importUrl)
        +                                throws java.io.IOException
        +
        Creates a Project for a specific User
        +
        +
        Parameters:
        +
        userId - The id of the user to create the project for
        +
        name - The name of the project
        +
        description - A description for the project, null otherwise
        +
        defaultBranch - The default branch for the project, otherwise null indicates to use GitLab default (master)
        +
        issuesEnabled - Whether Issues should be enabled, otherwise null indicates to use GitLab default
        +
        wallEnabled - Whether The Wall should be enabled, otherwise null indicates to use GitLab default
        +
        mergeRequestsEnabled - Whether Merge Requests should be enabled, otherwise null indicates to use GitLab default
        +
        wikiEnabled - Whether a Wiki should be enabled, otherwise null indicates to use GitLab default
        +
        snippetsEnabled - Whether Snippets should be enabled, otherwise null indicates to use GitLab default
        +
        publik - Whether the project is public or private, if true same as setting visibilityLevel = 20, otherwise null indicates to use GitLab default
        +
        visibilityLevel - The visibility level of the project, otherwise null indicates to use GitLab default
        +
        importUrl - The Import URL for the project, otherwise null
        +
        Returns:
        +
        The GitLab Project
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        updateProject

        +
        public GitlabProject updateProject(java.lang.Integer projectId,
        +                                   java.lang.String name,
        +                                   java.lang.String description,
        +                                   java.lang.Boolean issuesEnabled,
        +                                   java.lang.Boolean wallEnabled,
        +                                   java.lang.Boolean mergeRequestsEnabled,
        +                                   java.lang.Boolean wikiEnabled,
        +                                   java.lang.Boolean snippetsEnabled,
        +                                   java.lang.Boolean publik,
        +                                   java.lang.Integer visibilityLevel)
        +                            throws java.io.IOException
        +
        Updates a Project
        +
        +
        Parameters:
        +
        projectId - The id of the project to update
        +
        name - The name of the project
        +
        description - A description for the project, null otherwise
        +
        issuesEnabled - Whether Issues should be enabled, otherwise null indicates to use GitLab default
        +
        wallEnabled - Whether The Wall should be enabled, otherwise null indicates to use GitLab default
        +
        mergeRequestsEnabled - Whether Merge Requests should be enabled, otherwise null indicates to use GitLab default
        +
        wikiEnabled - Whether a Wiki should be enabled, otherwise null indicates to use GitLab default
        +
        snippetsEnabled - Whether Snippets should be enabled, otherwise null indicates to use GitLab default
        +
        publik - Whether the project is public or private, if true same as setting visibilityLevel = 20, otherwise null indicates to use GitLab default
        +
        visibilityLevel - The visibility level of the project, otherwise null indicates to use GitLab default
        +
        Returns:
        +
        the Gitlab Project
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteProject

        +
        public void deleteProject(java.io.Serializable projectId)
        +                   throws java.io.IOException
        +
        Delete a Project.
        +
        +
        Parameters:
        +
        projectId - The id of the project to delete
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getOpenMergeRequests

        +
        public java.util.List<GitlabMergeRequest> getOpenMergeRequests(java.io.Serializable projectId)
        +                                                        throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getOpenMergeRequests

        +
        public java.util.List<GitlabMergeRequest> getOpenMergeRequests(GitlabProject project)
        +                                                        throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getMergeRequests

        +
        public java.util.List<GitlabMergeRequest> getMergeRequests(java.io.Serializable projectId)
        +                                                    throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getMergeRequests

        +
        public java.util.List<GitlabMergeRequest> getMergeRequests(GitlabProject project)
        +                                                    throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getAllMergeRequests

        +
        public java.util.List<GitlabMergeRequest> getAllMergeRequests(GitlabProject project)
        +                                                       throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getMergeRequestByIid

        +
        public GitlabMergeRequest getMergeRequestByIid(java.io.Serializable projectId,
        +                                               java.lang.Integer mergeRequestIid)
        +                                        throws java.io.IOException
        +
        Return Merge Request.
        +
        +
        Parameters:
        +
        projectId - The id of the project
        +
        mergeRequestIid - The iid of the merge request
        +
        Returns:
        +
        the Gitlab Merge Request
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getMergeRequestChanges

        +
        public GitlabMergeRequest getMergeRequestChanges(java.io.Serializable projectId,
        +                                                 java.lang.Integer mergeRequestId)
        +                                          throws java.io.IOException
        +
        Return a Merge Request including its changes.
        +
        +
        Parameters:
        +
        projectId - The id of the project
        +
        mergeRequestId - The id of the merge request
        +
        Returns:
        +
        the Gitlab Merge Request
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getMergeRequest

        +
        public GitlabMergeRequest getMergeRequest(GitlabProject project,
        +                                          java.lang.Integer mergeRequestId)
        +                                   throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createMergeRequest

        +
        public GitlabMergeRequest createMergeRequest(java.io.Serializable projectId,
        +                                             java.lang.String sourceBranch,
        +                                             java.lang.String targetBranch,
        +                                             java.lang.Integer assigneeId,
        +                                             java.lang.String title)
        +                                      throws java.io.IOException
        +
        Create a new MergeRequest
        +
        +
        Parameters:
        +
        projectId -
        +
        sourceBranch -
        +
        targetBranch -
        +
        assigneeId -
        +
        title -
        +
        Returns:
        +
        GitlabMergeRequest
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        updateMergeRequest

        +
        public GitlabMergeRequest updateMergeRequest(java.io.Serializable projectId,
        +                                             java.lang.Integer mergeRequestId,
        +                                             java.lang.String targetBranch,
        +                                             java.lang.Integer assigneeId,
        +                                             java.lang.String title,
        +                                             java.lang.String description,
        +                                             java.lang.String stateEvent,
        +                                             java.lang.String labels)
        +                                      throws java.io.IOException
        +
        Updates a Merge Request
        +
        +
        Parameters:
        +
        projectId - The id of the project
        +
        mergeRequestId - The id of the merge request to update
        +
        targetBranch - The target branch of the merge request, otherwise null to leave it untouched
        +
        assigneeId - The id of the assignee, otherwise null to leave it untouched
        +
        title - The title of the merge request, otherwise null to leave it untouched
        +
        description - The description of the merge request, otherwise null to leave it untouched
        +
        stateEvent - The state (close|reopen|merge) of the merge request, otherwise null to leave it untouched
        +
        labels - A comma separated list of labels, otherwise null to leave it untouched
        +
        Returns:
        +
        the Merge Request
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        acceptMergeRequest

        +
        public GitlabMergeRequest acceptMergeRequest(GitlabProject project,
        +                                             java.lang.Integer mergeRequestId,
        +                                             java.lang.String mergeCommitMessage)
        +                                      throws java.io.IOException
        +
        +
        Parameters:
        +
        project - The Project
        +
        mergeRequestId - Merge Request ID
        +
        mergeCommitMessage - optional merge commit message. Null if not set
        +
        Returns:
        +
        new merge request status
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getNote

        +
        public GitlabNote getNote(GitlabMergeRequest mergeRequest,
        +                          java.lang.Integer noteId)
        +                   throws java.io.IOException
        +
        Get a Note from a Merge Request.
        +
        +
        Parameters:
        +
        mergeRequest - The merge request
        +
        noteId - The id of the note
        +
        Returns:
        +
        the Gitlab Note
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getNotes

        +
        public java.util.List<GitlabNote> getNotes(GitlabMergeRequest mergeRequest)
        +                                    throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getAllNotes

        +
        public java.util.List<GitlabNote> getAllNotes(GitlabMergeRequest mergeRequest)
        +                                       throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommit

        +
        public GitlabCommit getCommit(java.io.Serializable projectId,
        +                              java.lang.String commitHash)
        +                       throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommitBuilds

        +
        public java.util.List<GitlabBuild> getCommitBuilds(GitlabProject projectId,
        +                                                   java.lang.String commitHash)
        +                                            throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommitBuilds

        +
        public java.util.List<GitlabBuild> getCommitBuilds(java.io.Serializable projectId,
        +                                                   java.lang.String commitHash)
        +                                            throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommits

        +
        public java.util.List<GitlabCommit> getCommits(GitlabMergeRequest mergeRequest)
        +                                        throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getLastCommits

        +
        public java.util.List<GitlabCommit> getLastCommits(java.io.Serializable projectId)
        +                                            throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getLastCommits

        +
        public java.util.List<GitlabCommit> getLastCommits(java.io.Serializable projectId,
        +                                                   java.lang.String branchOrTag)
        +                                            throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommits

        +
        public java.util.List<GitlabCommit> getCommits(java.io.Serializable projectId,
        +                                               Pagination pagination,
        +                                               java.lang.String branchOrTag)
        +                                        throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getAllCommits

        +
        public java.util.List<GitlabCommit> getAllCommits(java.io.Serializable projectId)
        +                                           throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getAllCommits

        +
        public java.util.List<GitlabCommit> getAllCommits(java.io.Serializable projectId,
        +                                                  java.lang.String branchOrTag)
        +                                           throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getAllCommits

        +
        public java.util.List<GitlabCommit> getAllCommits(java.io.Serializable projectId,
        +                                                  Pagination pagination,
        +                                                  java.lang.String branchOrTag)
        +                                           throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommitDiffs

        +
        public java.util.List<GitlabCommitDiff> getCommitDiffs(java.io.Serializable projectId,
        +                                                       java.lang.String commitHash)
        +                                                throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommitDiffs

        +
        public java.util.List<GitlabCommitDiff> getCommitDiffs(java.io.Serializable projectId,
        +                                                       java.lang.String commitHash,
        +                                                       Pagination pagination)
        +                                                throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        compareCommits

        +
        public GitlabCommitComparison compareCommits(java.io.Serializable projectId,
        +                                             java.lang.String commitHash1,
        +                                             java.lang.String commitHash2)
        +                                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        compareCommits

        +
        public GitlabCommitComparison compareCommits(java.io.Serializable projectId,
        +                                             java.lang.String commitHash1,
        +                                             java.lang.String commitHash2,
        +                                             Pagination pagination)
        +                                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommitStatuses

        +
        public java.util.List<GitlabCommitStatus> getCommitStatuses(GitlabProject project,
        +                                                            java.lang.String commitHash)
        +                                                     throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getCommitStatuses

        +
        public java.util.List<GitlabCommitStatus> getCommitStatuses(GitlabProject project,
        +                                                            java.lang.String commitHash,
        +                                                            Pagination pagination)
        +                                                     throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createCommitStatus

        +
        public GitlabCommitStatus createCommitStatus(GitlabProject project,
        +                                             java.lang.String commitHash,
        +                                             java.lang.String state,
        +                                             java.lang.String ref,
        +                                             java.lang.String name,
        +                                             java.lang.String targetUrl,
        +                                             java.lang.String description)
        +                                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getRawFileContent

        +
        public byte[] getRawFileContent(GitlabProject project,
        +                                java.lang.String sha,
        +                                java.lang.String filepath)
        +                         throws java.io.IOException
        +
        Get raw file content
        +
        +
        Parameters:
        +
        project - The Project
        +
        sha - The commit or branch name
        +
        filepath - The path of the file
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getRawFileContent

        +
        public byte[] getRawFileContent(java.lang.Integer projectId,
        +                                java.lang.String sha,
        +                                java.lang.String filepath)
        +                         throws java.io.IOException
        +
        Get raw file content
        +
        +
        Parameters:
        +
        projectId - The Project
        +
        sha - The commit or branch name
        +
        filepath - The path of the file
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getRawBlobContent

        +
        public byte[] getRawBlobContent(GitlabProject project,
        +                                java.lang.String sha)
        +                         throws java.io.IOException
        +
        Get the raw file contents for a blob by blob SHA.
        +
        +
        Parameters:
        +
        project - The Project
        +
        sha - The commit or branch name
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getFileArchive

        +
        public byte[] getFileArchive(GitlabProject project)
        +                      throws java.io.IOException
        +
        Get an archive of the repository
        +
        +
        Parameters:
        +
        project - The Project
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getRepositoryTree

        +
        public java.util.List<GitlabRepositoryTree> getRepositoryTree(GitlabProject project,
        +                                                              java.lang.String path,
        +                                                              java.lang.String ref_name)
        +                                                       throws java.io.IOException
        +
        Get an archive of the repository
        +
        +
        Parameters:
        +
        project - The Project
        +
        path - The path inside the repository. Used to get content of subdirectories (optional)
        +
        ref_name - The name of a repository branch or tag or if not given the default branch (optional)
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        updateNote

        +
        public GitlabNote updateNote(GitlabMergeRequest mergeRequest,
        +                             java.lang.Integer noteId,
        +                             java.lang.String body)
        +                      throws java.io.IOException
        +
        Update a Merge Request Note
        +
        +
        Parameters:
        +
        mergeRequest - The merge request
        +
        noteId - The id of the note
        +
        body - The content of the note
        +
        Returns:
        +
        the Gitlab Note
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createNote

        +
        public GitlabNote createNote(GitlabMergeRequest mergeRequest,
        +                             java.lang.String body)
        +                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getBranches

        +
        public java.util.List<GitlabBranch> getBranches(java.io.Serializable projectId)
        +                                         throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getBranches

        +
        public java.util.List<GitlabBranch> getBranches(GitlabProject project)
        +                                         throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createBranch

        +
        public void createBranch(GitlabProject project,
        +                         java.lang.String branchName,
        +                         java.lang.String ref)
        +                  throws java.io.IOException
        + +
        +
        Parameters:
        +
        project - The gitlab project
        +
        branchName - The name of the branch to create
        +
        ref - The branch name or commit SHA to create branch from
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createBranch

        +
        public void createBranch(java.io.Serializable projectId,
        +                         java.lang.String branchName,
        +                         java.lang.String ref)
        +                  throws java.io.IOException
        + +
        +
        Parameters:
        +
        projectId - The id of the project
        +
        branchName - The name of the branch to create
        +
        ref - The branch name or commit SHA to create branch from
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteBranch

        +
        public void deleteBranch(java.io.Serializable projectId,
        +                         java.lang.String branchName)
        +                  throws java.io.IOException
        +
        Delete Branch.
        +
        +
        Parameters:
        +
        projectId - The id of the project
        +
        branchName - The name of the branch to delete
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getBranch

        +
        public GitlabBranch getBranch(GitlabProject project,
        +                              java.lang.String branchName)
        +                       throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        protectBranch

        +
        public void protectBranch(GitlabProject project,
        +                          java.lang.String branchName)
        +                   throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        unprotectBranch

        +
        public void unprotectBranch(GitlabProject project,
        +                            java.lang.String branchName)
        +                     throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectHooks

        +
        public java.util.List<GitlabProjectHook> getProjectHooks(java.io.Serializable projectId)
        +                                                  throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectHooks

        +
        public java.util.List<GitlabProjectHook> getProjectHooks(GitlabProject project)
        +                                                  throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectHook

        +
        public GitlabProjectHook getProjectHook(GitlabProject project,
        +                                        java.lang.String hookId)
        +                                 throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        addProjectHook

        +
        public GitlabProjectHook addProjectHook(GitlabProject project,
        +                                        java.lang.String url)
        +                                 throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        addProjectHook

        +
        public GitlabProjectHook addProjectHook(java.io.Serializable projectId,
        +                                        java.lang.String url,
        +                                        boolean pushEvents,
        +                                        boolean issuesEvents,
        +                                        boolean mergeRequestEvents,
        +                                        boolean sslVerification)
        +                                 throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        editProjectHook

        +
        public GitlabProjectHook editProjectHook(GitlabProject project,
        +                                         java.lang.String hookId,
        +                                         java.lang.String url)
        +                                  throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        deleteProjectHook

        +
        public void deleteProjectHook(GitlabProjectHook hook)
        +                       throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        deleteProjectHook

        +
        public void deleteProjectHook(GitlabProject project,
        +                              java.lang.String hookId)
        +                       throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getIssues

        +
        public java.util.List<GitlabIssue> getIssues(GitlabProject project)
        +                                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getIssue

        +
        public GitlabIssue getIssue(java.io.Serializable projectId,
        +                            java.lang.Integer issueId)
        +                     throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createIssue

        +
        public GitlabIssue createIssue(int projectId,
        +                               int assigneeId,
        +                               int milestoneId,
        +                               java.lang.String labels,
        +                               java.lang.String description,
        +                               java.lang.String title)
        +                        throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        editIssue

        +
        public GitlabIssue editIssue(int projectId,
        +                             int issueId,
        +                             int assigneeId,
        +                             int milestoneId,
        +                             java.lang.String labels,
        +                             java.lang.String description,
        +                             java.lang.String title,
        +                             GitlabIssue.Action action)
        +                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getNotes

        +
        public java.util.List<GitlabNote> getNotes(GitlabIssue issue)
        +                                    throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createNote

        +
        public GitlabNote createNote(java.io.Serializable projectId,
        +                             java.lang.Integer issueId,
        +                             java.lang.String message)
        +                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createNote

        +
        public GitlabNote createNote(GitlabIssue issue,
        +                             java.lang.String message)
        +                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getLabels

        +
        public java.util.List<GitlabLabel> getLabels(java.io.Serializable projectId)
        +                                      throws java.io.IOException
        +
        Gets labels associated with a project.
        +
        +
        Parameters:
        +
        projectId - The ID of the project.
        +
        Returns:
        +
        A non-null list of labels.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getLabels

        +
        public java.util.List<GitlabLabel> getLabels(GitlabProject project)
        +                                      throws java.io.IOException
        +
        Gets labels associated with a project.
        +
        +
        Parameters:
        +
        project - The project associated with labels.
        +
        Returns:
        +
        A non-null list of labels.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createLabel

        +
        public GitlabLabel createLabel(java.io.Serializable projectId,
        +                               java.lang.String name,
        +                               java.lang.String color)
        +                        throws java.io.IOException
        +
        Creates a new label.
        +
        +
        Parameters:
        +
        projectId - The ID of the project containing the new label.
        +
        name - The name of the label.
        +
        color - The color of the label (eg #ff0000).
        +
        Returns:
        +
        The newly created label.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createLabel

        +
        public GitlabLabel createLabel(java.io.Serializable projectId,
        +                               GitlabLabel label)
        +                        throws java.io.IOException
        +
        Creates a new label.
        +
        +
        Parameters:
        +
        projectId - The ID of the project containing the label.
        +
        label - The label to create.
        +
        Returns:
        +
        The newly created label.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        deleteLabel

        +
        public void deleteLabel(java.io.Serializable projectId,
        +                        java.lang.String name)
        +                 throws java.io.IOException
        +
        Deletes an existing label.
        +
        +
        Parameters:
        +
        projectId - The ID of the project containing the label.
        +
        name - The name of the label to delete.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        deleteLabel

        +
        public void deleteLabel(java.io.Serializable projectId,
        +                        GitlabLabel label)
        +                 throws java.io.IOException
        +
        Deletes an existing label.
        +
        +
        Parameters:
        +
        projectId - The ID of the project containing the label.
        +
        label - The label to delete.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        updateLabel

        +
        public GitlabLabel updateLabel(java.io.Serializable projectId,
        +                               java.lang.String name,
        +                               java.lang.String newName,
        +                               java.lang.String newColor)
        +                        throws java.io.IOException
        +
        Updates an existing label.
        +
        +
        Parameters:
        +
        projectId - The ID of the project containing the label.
        +
        name - The name of the label to update.
        +
        newName - The updated name.
        +
        newColor - The updated color.
        +
        Returns:
        +
        The updated, deserialized label.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getMilestones

        +
        public java.util.List<GitlabMilestone> getMilestones(GitlabProject project)
        +                                              throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getMilestones

        +
        public java.util.List<GitlabMilestone> getMilestones(java.io.Serializable projectId)
        +                                              throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createMilestone

        +
        public GitlabMilestone createMilestone(java.io.Serializable projectId,
        +                                       java.lang.String title,
        +                                       java.lang.String description,
        +                                       java.util.Date dueDate)
        +                                throws java.io.IOException
        +
        Cretaes a new project milestone.
        +
        +
        Parameters:
        +
        projectId - The ID of the project.
        +
        title - The title of the milestone.
        +
        description - The description of the milestone. (Optional)
        +
        dueDate - The date the milestone is due. (Optional)
        +
        Returns:
        +
        The newly created, de-serialized milestone.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        createMilestone

        +
        public GitlabMilestone createMilestone(java.io.Serializable projectId,
        +                                       GitlabMilestone milestone)
        +                                throws java.io.IOException
        +
        Creates a new project milestone.
        +
        +
        Parameters:
        +
        projectId - The ID of the project.
        +
        milestone - The milestone to create.
        +
        Returns:
        +
        The newly created, de-serialized milestone.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        updateMilestone

        +
        public GitlabMilestone updateMilestone(java.io.Serializable projectId,
        +                                       int milestoneId,
        +                                       java.lang.String title,
        +                                       java.lang.String description,
        +                                       java.util.Date dueDate,
        +                                       java.lang.String stateEvent)
        +                                throws java.io.IOException
        +
        Updates an existing project milestone.
        +
        +
        Parameters:
        +
        projectId - The ID of the project.
        +
        milestoneId - The ID of the milestone.
        +
        title - The title of the milestone. (Optional)
        +
        description - The description of the milestone. (Optional)
        +
        dueDate - The date the milestone is due. (Optional)
        +
        stateEvent - A value used to update the state of the milestone. + (Optional) (activate | close)
        +
        Returns:
        +
        The updated, de-serialized milestone.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        updateMilestone

        +
        public GitlabMilestone updateMilestone(java.io.Serializable projectId,
        +                                       GitlabMilestone edited,
        +                                       java.lang.String stateEvent)
        +                                throws java.io.IOException
        +
        Updates an existing project milestone.
        +
        +
        Parameters:
        +
        projectId - The ID of the project.
        +
        edited - The already edited milestone.
        +
        stateEvent - A value used to update the state of the milestone. + (Optional) (activate | close)
        +
        Returns:
        +
        The updated, de-serialized milestone.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        updateMilestone

        +
        public GitlabMilestone updateMilestone(GitlabMilestone edited,
        +                                       java.lang.String stateEvent)
        +                                throws java.io.IOException
        +
        Updates an existing project milestone.
        +
        +
        Parameters:
        +
        edited - The already edited milestone.
        +
        stateEvent - A value used to update the state of the milestone. + (Optional) (activate | close)
        +
        Returns:
        +
        The updated, de-serialized milestone.
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        addProjectMember

        +
        public GitlabProjectMember addProjectMember(GitlabProject project,
        +                                            GitlabUser user,
        +                                            GitlabAccessLevel accessLevel)
        +                                     throws java.io.IOException
        +
        Add a project member.
        +
        +
        Parameters:
        +
        project - the GitlabProject
        +
        user - the GitlabUser
        +
        accessLevel - the GitlabAccessLevel
        +
        Returns:
        +
        the GitlabProjectMember
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        addProjectMember

        +
        public GitlabProjectMember addProjectMember(java.lang.Integer projectId,
        +                                            java.lang.Integer userId,
        +                                            GitlabAccessLevel accessLevel)
        +                                     throws java.io.IOException
        +
        Add a project member.
        +
        +
        Parameters:
        +
        projectId - the project id
        +
        userId - the user id
        +
        accessLevel - the GitlabAccessLevel
        +
        Returns:
        +
        the GitlabProjectMember
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteProjectMember

        +
        public void deleteProjectMember(GitlabProject project,
        +                                GitlabUser user)
        +                         throws java.io.IOException
        +
        Delete a project team member.
        +
        +
        Parameters:
        +
        project - the GitlabProject
        +
        user - the GitlabUser
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteProjectMember

        +
        public void deleteProjectMember(java.lang.Integer projectId,
        +                                java.lang.Integer userId)
        +                         throws java.io.IOException
        +
        Delete a project team member.
        +
        +
        Parameters:
        +
        projectId - the project id
        +
        userId - the user id
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getProjectMembers

        +
        public java.util.List<GitlabProjectMember> getProjectMembers(GitlabProject project)
        +                                                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getProjectMembers

        +
        public java.util.List<GitlabProjectMember> getProjectMembers(java.io.Serializable projectId)
        +                                                      throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getNamespaceMembers

        +
        public java.util.List<GitlabProjectMember> getNamespaceMembers(GitlabNamespace namespace)
        +                                                        throws java.io.IOException
        +
        This will fail, if the given namespace is a user and not a group
        +
        +
        Parameters:
        +
        namespace - The namespace
        +
        Returns:
        +
        A list of Gitlab Project members
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getNamespaceMembers

        +
        public java.util.List<GitlabProjectMember> getNamespaceMembers(java.lang.Integer namespaceId)
        +                                                        throws java.io.IOException
        +
        This will fail, if the given namespace is a user and not a group
        +
        +
        Parameters:
        +
        namespaceId - Namespace ID
        +
        Returns:
        +
        A list of Gitlab Project members
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        transfer

        +
        public void transfer(java.lang.Integer namespaceId,
        +                     java.lang.Integer projectId)
        +              throws java.io.IOException
        +
        Transfer a project to the given namespace
        +
        +
        Parameters:
        +
        namespaceId - Namespace ID
        +
        projectId - Project ID
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createDeployKey

        +
        public GitlabSSHKey createDeployKey(java.lang.Integer targetProjectId,
        +                                    java.lang.String title,
        +                                    java.lang.String key)
        +                             throws java.io.IOException
        +
        Create a new deploy key for the project
        +
        +
        Parameters:
        +
        targetProjectId - The id of the Gitlab project
        +
        title - The title of the ssh key
        +
        key - The public key
        +
        Returns:
        +
        The new GitlabSSHKey
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteDeployKey

        +
        public void deleteDeployKey(java.lang.Integer targetProjectId,
        +                            java.lang.Integer targetKeyId)
        +                     throws java.io.IOException
        +
        Delete a deploy key for a project
        +
        +
        Parameters:
        +
        targetProjectId - The id of the Gitlab project
        +
        targetKeyId - The id of the Gitlab ssh key
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getDeployKeys

        +
        public java.util.List<GitlabSSHKey> getDeployKeys(java.lang.Integer targetProjectId)
        +                                           throws java.io.IOException
        +
        Gets all deploy keys for a project
        +
        +
        Parameters:
        +
        targetProjectId - The id of the Gitlab project
        +
        Returns:
        +
        The list of project deploy keys
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getCurrentSession

        +
        public GitlabSession getCurrentSession()
        +                                throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getSystemHooks

        +
        public java.util.List<GitlabSystemHook> getSystemHooks()
        +                                                throws java.io.IOException
        +
        Get list of system hooks
        +
        +
        Returns:
        +
        The system hooks list
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        addSystemHook

        +
        public GitlabSystemHook addSystemHook(java.lang.String url)
        +                               throws java.io.IOException
        +
        Add new system hook hook
        +
        +
        Parameters:
        +
        url - System hook url
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        testSystemHook

        +
        public void testSystemHook(java.lang.Integer hookId)
        +                    throws java.io.IOException
        +
        Test system hook
        +
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteSystemHook

        +
        public GitlabSystemHook deleteSystemHook(java.lang.Integer hookId)
        +                                  throws java.io.IOException
        +
        Delete system hook
        +
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        createCommitComment

        +
        public CommitComment createCommitComment(java.lang.Integer projectId,
        +                                         java.lang.String sha,
        +                                         java.lang.String note,
        +                                         java.lang.String path,
        +                                         java.lang.String line,
        +                                         java.lang.String line_type)
        +                                  throws java.io.IOException
        +
        Post comment to commit
        +
        +
        Parameters:
        +
        projectId - (required) - The ID of a project
        +
        sha - (required) - The name of a repository branch or tag or if not given the default branch
        +
        note - (required) - Text of comment
        +
        path - (optional) - The file path
        +
        line - (optional) - The line number
        +
        line_type - (optional) - The line type (new or old)
        +
        Returns:
        +
        A CommitComment
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        See Also:
        +
        http://doc.gitlab.com/ce/api/commits.html#post-comment-to-commit
        +
        +
      • +
      + + + +
        +
      • +

        getCommitComments

        +
        public java.util.List<CommitComment> getCommitComments(java.lang.Integer projectId,
        +                                                       java.lang.String sha)
        +                                                throws java.io.IOException
        +
        Get the comments of a commit
        +
        +
        Parameters:
        +
        projectId - (required) - The ID of a project
        +
        sha - (required) - The name of a repository branch or tag or if not given the default branch
        +
        Returns:
        +
        A CommitComment
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        See Also:
        +
        http://doc.gitlab.com/ce/api/commits.html#post-comment-to-commit
        +
        +
      • +
      + + + +
        +
      • +

        getTags

        +
        public java.util.List<GitlabTag> getTags(java.io.Serializable projectId)
        +                                  throws java.io.IOException
        +
        Get a list of tags in specific project
        +
        +
        Parameters:
        +
        projectId -
        +
        Returns:
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        getTags

        +
        public java.util.List<GitlabTag> getTags(GitlabProject project)
        +                                  throws java.io.IOException
        +
        Get a list of tags in specific project
        +
        +
        Parameters:
        +
        project -
        +
        Returns:
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        addTag

        +
        public GitlabTag addTag(java.io.Serializable projectId,
        +                        java.lang.String tagName,
        +                        java.lang.String ref,
        +                        java.lang.String message,
        +                        java.lang.String releaseDescription)
        +                 throws java.io.IOException
        +
        Create tag in specific project
        +
        +
        Parameters:
        +
        projectId -
        +
        tagName -
        +
        ref -
        +
        message -
        +
        releaseDescription -
        +
        Returns:
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        addTag

        +
        public GitlabTag addTag(GitlabProject project,
        +                        java.lang.String tagName,
        +                        java.lang.String ref,
        +                        java.lang.String message,
        +                        java.lang.String releaseDescription)
        +                 throws java.io.IOException
        +
        Create tag in specific project
        +
        +
        Parameters:
        +
        project -
        +
        tagName -
        +
        ref -
        +
        message -
        +
        releaseDescription -
        +
        Returns:
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteTag

        +
        public void deleteTag(java.io.Serializable projectId,
        +                      java.lang.String tagName)
        +               throws java.io.IOException
        +
        Delete tag in specific project
        +
        +
        Parameters:
        +
        projectId -
        +
        tagName -
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      + + + +
        +
      • +

        deleteTag

        +
        public void deleteTag(GitlabProject project,
        +                      java.lang.String tagName)
        +               throws java.io.IOException
        +
        Delete tag in specific project
        +
        +
        Parameters:
        +
        project -
        +
        tagName -
        +
        Throws:
        +
        java.io.IOException - on gitlab api call error
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/GitlabAPIException.html b/org/gitlab/api/GitlabAPIException.html new file mode 100644 index 00000000..6ad0be4f --- /dev/null +++ b/org/gitlab/api/GitlabAPIException.html @@ -0,0 +1,304 @@ + + + + + +GitlabAPIException + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api
+

Class GitlabAPIException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    +
    public class GitlabAPIException
    +extends java.io.IOException
    +
    Gitlab API Exception
    +
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabAPIException(java.lang.String message, + java.lang.Integer responseCode, + java.lang.Throwable cause) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      intgetResponseCode() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Throwable

        +addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabAPIException

        +
        public GitlabAPIException(java.lang.String message,
        +                          java.lang.Integer responseCode,
        +                          java.lang.Throwable cause)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getResponseCode

        +
        public int getResponseCode()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/Pagination.html b/org/gitlab/api/Pagination.html new file mode 100644 index 00000000..cf89248e --- /dev/null +++ b/org/gitlab/api/Pagination.html @@ -0,0 +1,386 @@ + + + + + +Pagination + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api
+

Class Pagination

+
+
+ +
+
    +
  • +
    +
    +
    public class Pagination
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Pagination() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      org.gitlab.api.http.QueryasQuery() 
      voidsetPage(int page) 
      voidsetPerPage(int perPage) 
      java.lang.StringtoString() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Pagination

        +
        public Pagination()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setPage

        +
        public void setPage(int page)
        +
      • +
      + + + +
        +
      • +

        setPerPage

        +
        public void setPerPage(int perPage)
        +
      • +
      + + + +
        +
      • +

        asQuery

        +
        public org.gitlab.api.http.Query asQuery()
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/TokenType.html b/org/gitlab/api/TokenType.html new file mode 100644 index 00000000..67251a7b --- /dev/null +++ b/org/gitlab/api/TokenType.html @@ -0,0 +1,378 @@ + + + + + +TokenType + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api
+

Enum TokenType

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<TokenType>
    +
    +
    +
    +
    public enum TokenType
    +extends java.lang.Enum<TokenType>
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetTokenHeaderFormat() 
      java.lang.StringgetTokenHeaderName() 
      java.lang.StringgetTokenParamName() 
      static TokenTypevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static TokenType[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Detail

      + + + +
        +
      • +

        PRIVATE_TOKEN

        +
        public static final TokenType PRIVATE_TOKEN
        +
      • +
      + + + +
        +
      • +

        ACCESS_TOKEN

        +
        public static final TokenType ACCESS_TOKEN
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static TokenType[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (TokenType c : TokenType.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static TokenType valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        getTokenParamName

        +
        public java.lang.String getTokenParamName()
        +
      • +
      + + + +
        +
      • +

        getTokenHeaderName

        +
        public java.lang.String getTokenHeaderName()
        +
      • +
      + + + +
        +
      • +

        getTokenHeaderFormat

        +
        public java.lang.String getTokenHeaderFormat()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/CommitComment.html b/org/gitlab/api/models/CommitComment.html new file mode 100644 index 00000000..184eab8a --- /dev/null +++ b/org/gitlab/api/models/CommitComment.html @@ -0,0 +1,426 @@ + + + + + +CommitComment + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class CommitComment

+
+
+ +
+
    +
  • +
    +
    +
    public class CommitComment
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      CommitComment() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CommitComment

        +
        public CommitComment()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getAuthor

        +
        public GitlabUser getAuthor()
        +
      • +
      + + + +
        +
      • +

        setAuthor

        +
        public void setAuthor(GitlabUser author)
        +
      • +
      + + + +
        +
      • +

        getNote

        +
        public java.lang.String getNote()
        +
      • +
      + + + +
        +
      • +

        setNote

        +
        public void setNote(java.lang.String note)
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public java.lang.String getPath()
        +
      • +
      + + + +
        +
      • +

        setPath

        +
        public void setPath(java.lang.String path)
        +
      • +
      + + + +
        +
      • +

        getLine

        +
        public java.lang.String getLine()
        +
      • +
      + + + +
        +
      • +

        setLine

        +
        public void setLine(java.lang.String line)
        +
      • +
      + + + +
        +
      • +

        getLineType

        +
        public java.lang.String getLineType()
        +
      • +
      + + + +
        +
      • +

        setLineType

        +
        public void setLineType(java.lang.String lineType)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabAbstractMember.html b/org/gitlab/api/models/GitlabAbstractMember.html new file mode 100644 index 00000000..7996cd3c --- /dev/null +++ b/org/gitlab/api/models/GitlabAbstractMember.html @@ -0,0 +1,345 @@ + + + + + +GitlabAbstractMember + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabAbstractMember

+
+
+ +
+ +
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabAbstractMember

        +
        public GitlabAbstractMember()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabAccessLevel.html b/org/gitlab/api/models/GitlabAccessLevel.html new file mode 100644 index 00000000..b049ac74 --- /dev/null +++ b/org/gitlab/api/models/GitlabAccessLevel.html @@ -0,0 +1,429 @@ + + + + + +GitlabAccessLevel + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Enum GitlabAccessLevel

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<GitlabAccessLevel>
    +
    +
    +
    +
    public enum GitlabAccessLevel
    +extends java.lang.Enum<GitlabAccessLevel>
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      intaccessValue 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static GitlabAccessLevelfromAccessValue(int accessValue) 
      static GitlabAccessLevelvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static GitlabAccessLevel[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        accessValue

        +
        public final int accessValue
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static GitlabAccessLevel[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (GitlabAccessLevel c : GitlabAccessLevel.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static GitlabAccessLevel valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        fromAccessValue

        +
        public static GitlabAccessLevel fromAccessValue(int accessValue)
        +                                         throws java.lang.IllegalArgumentException
        +
        +
        Throws:
        +
        java.lang.IllegalArgumentException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabBranch.html b/org/gitlab/api/models/GitlabBranch.html new file mode 100644 index 00000000..3724229b --- /dev/null +++ b/org/gitlab/api/models/GitlabBranch.html @@ -0,0 +1,374 @@ + + + + + +GitlabBranch + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabBranch

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabBranch
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabBranch() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabBranch

        +
        public GitlabBranch()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        isProtected

        +
        public boolean isProtected()
        +
      • +
      + + + +
        +
      • +

        setProtected

        +
        public void setProtected(boolean isProtected)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabBranchCommit.html b/org/gitlab/api/models/GitlabBranchCommit.html new file mode 100644 index 00000000..f797f434 --- /dev/null +++ b/org/gitlab/api/models/GitlabBranchCommit.html @@ -0,0 +1,474 @@ + + + + + +GitlabBranchCommit + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabBranchCommit

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabBranchCommit
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        URL

        +
        public static java.lang.String URL
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabBranchCommit

        +
        public GitlabBranchCommit()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.String getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.String id)
        +
      • +
      + + + +
        +
      • +

        getTree

        +
        public java.lang.String getTree()
        +
      • +
      + + + +
        +
      • +

        setTree

        +
        public void setTree(java.lang.String tree)
        +
      • +
      + + + +
        +
      • +

        getMessage

        +
        public java.lang.String getMessage()
        +
      • +
      + + + +
        +
      • +

        setMessage

        +
        public void setMessage(java.lang.String message)
        +
      • +
      + + + +
        +
      • +

        getAuthor

        +
        public GitlabUser getAuthor()
        +
      • +
      + + + +
        +
      • +

        setAuthor

        +
        public void setAuthor(GitlabUser author)
        +
      • +
      + + + +
        +
      • +

        getCommitter

        +
        public GitlabUser getCommitter()
        +
      • +
      + + + +
        +
      • +

        setCommitter

        +
        public void setCommitter(GitlabUser committer)
        +
      • +
      + + + +
        +
      • +

        getAuthoredDate

        +
        public java.util.Date getAuthoredDate()
        +
      • +
      + + + +
        +
      • +

        setAuthoredDate

        +
        public void setAuthoredDate(java.util.Date authoredDate)
        +
      • +
      + + + +
        +
      • +

        getCommittedDate

        +
        public java.util.Date getCommittedDate()
        +
      • +
      + + + +
        +
      • +

        setCommittedDate

        +
        public void setCommittedDate(java.util.Date committedDate)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabBuild.html b/org/gitlab/api/models/GitlabBuild.html new file mode 100644 index 00000000..bc7bbe81 --- /dev/null +++ b/org/gitlab/api/models/GitlabBuild.html @@ -0,0 +1,660 @@ + + + + + +GitlabBuild + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabBuild

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabBuild
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabBuild

        +
        public GitlabBuild()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        setUser

        +
        public void setUser(GitlabUser user)
        +
      • +
      + + + +
        +
      • +

        getTag

        +
        public java.lang.Boolean getTag()
        +
      • +
      + + + +
        +
      • +

        setTag

        +
        public void setTag(java.lang.Boolean tag)
        +
      • +
      + + + +
        +
      • +

        getStatus

        +
        public java.lang.String getStatus()
        +
      • +
      + + + +
        +
      • +

        setStatus

        +
        public void setStatus(java.lang.String status)
        +
      • +
      + + + +
        +
      • +

        getStartedAt

        +
        public java.lang.String getStartedAt()
        +
      • +
      + + + +
        +
      • +

        setStartedAt

        +
        public void setStartedAt(java.lang.String startedAt)
        +
      • +
      + + + +
        +
      • +

        getStage

        +
        public java.lang.String getStage()
        +
      • +
      + + + +
        +
      • +

        setStage

        +
        public void setStage(java.lang.String stage)
        +
      • +
      + + + + + + + +
        +
      • +

        setRunner

        +
        public void setRunner(GitlabRunner runner)
        +
      • +
      + + + +
        +
      • +

        getRef

        +
        public java.lang.String getRef()
        +
      • +
      + + + +
        +
      • +

        setRef

        +
        public void setRef(java.lang.String ref)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getFinishedAt

        +
        public java.lang.String getFinishedAt()
        +
      • +
      + + + +
        +
      • +

        setFinishedAt

        +
        public void setFinishedAt(java.lang.String finishedAt)
        +
      • +
      + + + +
        +
      • +

        getDownloadUrl

        +
        public java.lang.String getDownloadUrl()
        +
      • +
      + + + +
        +
      • +

        setDownloadUrl

        +
        public void setDownloadUrl(java.lang.String downloadUrl)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.lang.String getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.lang.String createdAt)
        +
      • +
      + + + +
        +
      • +

        getCoverage

        +
        public java.lang.String getCoverage()
        +
      • +
      + + + +
        +
      • +

        setCoverage

        +
        public void setCoverage(java.lang.String coverage)
        +
      • +
      + + + + + + + +
        +
      • +

        setCommit

        +
        public void setCommit(GitlabCommit commit)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabCommit.html b/org/gitlab/api/models/GitlabCommit.html new file mode 100644 index 00000000..bd4e8e90 --- /dev/null +++ b/org/gitlab/api/models/GitlabCommit.html @@ -0,0 +1,521 @@ + + + + + +GitlabCommit + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabCommit

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabCommit
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabCommit() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabCommit

        +
        public GitlabCommit()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.String getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.String id)
        +
      • +
      + + + +
        +
      • +

        getShortId

        +
        public java.lang.String getShortId()
        +
      • +
      + + + +
        +
      • +

        setShortId

        +
        public void setShortId(java.lang.String shortId)
        +
      • +
      + + + +
        +
      • +

        getTitle

        +
        public java.lang.String getTitle()
        +
      • +
      + + + +
        +
      • +

        setTitle

        +
        public void setTitle(java.lang.String title)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      + + + +
        +
      • +

        getAuthorName

        +
        public java.lang.String getAuthorName()
        +
      • +
      + + + +
        +
      • +

        setAuthorName

        +
        public void setAuthorName(java.lang.String authorName)
        +
      • +
      + + + +
        +
      • +

        getAuthorEmail

        +
        public java.lang.String getAuthorEmail()
        +
      • +
      + + + +
        +
      • +

        setAuthorEmail

        +
        public void setAuthorEmail(java.lang.String authorEmail)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + +
        +
      • +

        getParentIds

        +
        public java.util.List<java.lang.String> getParentIds()
        +
      • +
      + + + +
        +
      • +

        setParentIds

        +
        public void setParentIds(java.util.List<java.lang.String> parentIds)
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabCommitComparison.html b/org/gitlab/api/models/GitlabCommitComparison.html new file mode 100644 index 00000000..3661efa0 --- /dev/null +++ b/org/gitlab/api/models/GitlabCommitComparison.html @@ -0,0 +1,426 @@ + + + + + +GitlabCommitComparison + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabCommitComparison

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabCommitComparison
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabCommitComparison

        +
        public GitlabCommitComparison()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        setCommit

        +
        public void setCommit(GitlabCommit commit)
        +
      • +
      + + + +
        +
      • +

        getCommits

        +
        public java.util.List<GitlabCommit> getCommits()
        +
      • +
      + + + +
        +
      • +

        setCommits

        +
        public void setCommits(java.util.List<GitlabCommit> commits)
        +
      • +
      + + + + + + + +
        +
      • +

        setDiffs

        +
        public void setDiffs(java.util.List<GitlabCommitDiff> diffs)
        +
      • +
      + + + +
        +
      • +

        getCompareSameRef

        +
        public java.lang.Boolean getCompareSameRef()
        +
      • +
      + + + +
        +
      • +

        setCompareSameRef

        +
        public void setCompareSameRef(java.lang.Boolean compareSameRef)
        +
      • +
      + + + +
        +
      • +

        getCompareTimeout

        +
        public java.lang.Boolean getCompareTimeout()
        +
      • +
      + + + +
        +
      • +

        setCompareTimeout

        +
        public void setCompareTimeout(java.lang.Boolean compareTimeout)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabCommitDiff.html b/org/gitlab/api/models/GitlabCommitDiff.html new file mode 100644 index 00000000..25ed559f --- /dev/null +++ b/org/gitlab/api/models/GitlabCommitDiff.html @@ -0,0 +1,504 @@ + + + + + +GitlabCommitDiff + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabCommitDiff

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabCommitDiff
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabCommitDiff() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabCommitDiff

        +
        public GitlabCommitDiff()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getDiff

        +
        public java.lang.String getDiff()
        +
      • +
      + + + +
        +
      • +

        setDiff

        +
        public void setDiff(java.lang.String diff)
        +
      • +
      + + + +
        +
      • +

        getNewPath

        +
        public java.lang.String getNewPath()
        +
      • +
      + + + +
        +
      • +

        setNewPath

        +
        public void setNewPath(java.lang.String newPath)
        +
      • +
      + + + +
        +
      • +

        getOldPath

        +
        public java.lang.String getOldPath()
        +
      • +
      + + + +
        +
      • +

        setOldPath

        +
        public void setOldPath(java.lang.String oldPath)
        +
      • +
      + + + +
        +
      • +

        getAMode

        +
        public java.lang.String getAMode()
        +
      • +
      + + + +
        +
      • +

        setAMode

        +
        public void setAMode(java.lang.String aMode)
        +
      • +
      + + + +
        +
      • +

        getBMode

        +
        public java.lang.String getBMode()
        +
      • +
      + + + +
        +
      • +

        setBMode

        +
        public void setBMode(java.lang.String bMode)
        +
      • +
      + + + +
        +
      • +

        getNewFile

        +
        public boolean getNewFile()
        +
      • +
      + + + +
        +
      • +

        setNewFile

        +
        public void setNewFile(boolean newFile)
        +
      • +
      + + + +
        +
      • +

        getRenamedFile

        +
        public boolean getRenamedFile()
        +
      • +
      + + + +
        +
      • +

        setRenamedFile

        +
        public void setRenamedFile(boolean renamedFile)
        +
      • +
      + + + +
        +
      • +

        getDeletedFile

        +
        public boolean getDeletedFile()
        +
      • +
      + + + +
        +
      • +

        setDeletedFile

        +
        public void setDeletedFile(boolean deletedFile)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabCommitStatus.html b/org/gitlab/api/models/GitlabCommitStatus.html new file mode 100644 index 00000000..73c5ae7b --- /dev/null +++ b/org/gitlab/api/models/GitlabCommitStatus.html @@ -0,0 +1,599 @@ + + + + + +GitlabCommitStatus + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabCommitStatus

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabCommitStatus
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabCommitStatus

        +
        public GitlabCommitStatus()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.String getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.String id)
        +
      • +
      + + + +
        +
      • +

        getSha

        +
        public java.lang.String getSha()
        +
      • +
      + + + +
        +
      • +

        setSha

        +
        public void setSha(java.lang.String sha)
        +
      • +
      + + + +
        +
      • +

        getRef

        +
        public java.lang.String getRef()
        +
      • +
      + + + +
        +
      • +

        setRef

        +
        public void setRef(java.lang.String ref)
        +
      • +
      + + + +
        +
      • +

        getStatus

        +
        public java.lang.String getStatus()
        +
      • +
      + + + +
        +
      • +

        setStatus

        +
        public void setStatus(java.lang.String status)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      + + + +
        +
      • +

        getAuthor

        +
        public GitlabUser getAuthor()
        +
      • +
      + + + +
        +
      • +

        setAuthor

        +
        public void setAuthor(GitlabUser author)
        +
      • +
      + + + +
        +
      • +

        getTargetUrl

        +
        public java.lang.String getTargetUrl()
        +
      • +
      + + + +
        +
      • +

        setTargetUrl

        +
        public void setTargetUrl(java.lang.String targetUrl)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + +
        +
      • +

        getStartedAt

        +
        public java.util.Date getStartedAt()
        +
      • +
      + + + +
        +
      • +

        setStartedAt

        +
        public void setStartedAt(java.util.Date startedAt)
        +
      • +
      + + + +
        +
      • +

        getFinishedAt

        +
        public java.util.Date getFinishedAt()
        +
      • +
      + + + +
        +
      • +

        setFinishedAt

        +
        public void setFinishedAt(java.util.Date finishedAt)
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabGroup.html b/org/gitlab/api/models/GitlabGroup.html new file mode 100644 index 00000000..1f44f001 --- /dev/null +++ b/org/gitlab/api/models/GitlabGroup.html @@ -0,0 +1,426 @@ + + + + + +GitlabGroup + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabGroup

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabGroup
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabGroup() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabGroup

        +
        public GitlabGroup()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public java.lang.String getPath()
        +
      • +
      + + + +
        +
      • +

        setPath

        +
        public void setPath(java.lang.String path)
        +
      • +
      + + + +
        +
      • +

        getLdapCn

        +
        public java.lang.String getLdapCn()
        +
      • +
      + + + +
        +
      • +

        setLdapCn

        +
        public void setLdapCn(java.lang.String ldapCn)
        +
      • +
      + + + + + + + +
        +
      • +

        setLdapAccess

        +
        public void setLdapAccess(GitlabAccessLevel ldapGitlabAccessLevel)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabGroupMember.html b/org/gitlab/api/models/GitlabGroupMember.html new file mode 100644 index 00000000..08c3cbe0 --- /dev/null +++ b/org/gitlab/api/models/GitlabGroupMember.html @@ -0,0 +1,281 @@ + + + + + +GitlabGroupMember + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabGroupMember

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabGroupMember

        +
        public GitlabGroupMember()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabIssue.Action.html b/org/gitlab/api/models/GitlabIssue.Action.html new file mode 100644 index 00000000..887909d1 --- /dev/null +++ b/org/gitlab/api/models/GitlabIssue.Action.html @@ -0,0 +1,355 @@ + + + + + +GitlabIssue.Action + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Enum GitlabIssue.Action

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      CLOSE 
      LEAVE 
      REOPEN 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static GitlabIssue.ActionvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static GitlabIssue.Action[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static GitlabIssue.Action[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (GitlabIssue.Action c : GitlabIssue.Action.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static GitlabIssue.Action valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabIssue.html b/org/gitlab/api/models/GitlabIssue.html new file mode 100644 index 00000000..aaa82ef7 --- /dev/null +++ b/org/gitlab/api/models/GitlabIssue.html @@ -0,0 +1,661 @@ + + + + + +GitlabIssue + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabIssue

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabIssue
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabIssue

        +
        public GitlabIssue()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public int getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(int id)
        +
      • +
      + + + +
        +
      • +

        getIid

        +
        public int getIid()
        +
      • +
      + + + +
        +
      • +

        setIid

        +
        public void setIid(int iid)
        +
      • +
      + + + +
        +
      • +

        getProjectId

        +
        public int getProjectId()
        +
      • +
      + + + +
        +
      • +

        setProjectId

        +
        public void setProjectId(int projectId)
        +
      • +
      + + + +
        +
      • +

        getTitle

        +
        public java.lang.String getTitle()
        +
      • +
      + + + +
        +
      • +

        setTitle

        +
        public void setTitle(java.lang.String title)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      + + + +
        +
      • +

        getLabels

        +
        public java.lang.String[] getLabels()
        +
      • +
      + + + +
        +
      • +

        setLabels

        +
        public void setLabels(java.lang.String[] labels)
        +
      • +
      + + + + + + + +
        +
      • +

        setMilestone

        +
        public void setMilestone(GitlabMilestone milestone)
        +
      • +
      + + + +
        +
      • +

        getAssignee

        +
        public GitlabUser getAssignee()
        +
      • +
      + + + +
        +
      • +

        setAssignee

        +
        public void setAssignee(GitlabUser assignee)
        +
      • +
      + + + +
        +
      • +

        getAuthor

        +
        public GitlabUser getAuthor()
        +
      • +
      + + + +
        +
      • +

        setAuthor

        +
        public void setAuthor(GitlabUser author)
        +
      • +
      + + + +
        +
      • +

        getState

        +
        public java.lang.String getState()
        +
      • +
      + + + +
        +
      • +

        setState

        +
        public void setState(java.lang.String state)
        +
      • +
      + + + +
        +
      • +

        getUpdatedAt

        +
        public java.util.Date getUpdatedAt()
        +
      • +
      + + + +
        +
      • +

        setUpdatedAt

        +
        public void setUpdatedAt(java.util.Date updatedAt)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabLabel.html b/org/gitlab/api/models/GitlabLabel.html new file mode 100644 index 00000000..f4ff8a88 --- /dev/null +++ b/org/gitlab/api/models/GitlabLabel.html @@ -0,0 +1,375 @@ + + + + + +GitlabLabel + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabLabel

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabLabel
    +extends java.lang.Object
    +
    Models a Gitlab label.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabLabel() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetColor() +
      Gets the color of a label as six digit HTML hex value.
      +
      java.lang.StringgetName() +
      Gets the name (text) of a label.
      +
      voidsetColor(java.lang.String color) +
      Sets the color of a label.
      +
      voidsetName(java.lang.String name) +
      Sets the name (text) of a label.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabLabel

        +
        public GitlabLabel()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
        Gets the name (text) of a label.
        +
        +
        Returns:
        +
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
        Sets the name (text) of a label.
        +
        +
        Parameters:
        +
        name -
        +
        +
      • +
      + + + +
        +
      • +

        getColor

        +
        public java.lang.String getColor()
        +
        Gets the color of a label as six digit HTML hex value.
        +
        +
        Returns:
        +
        +
      • +
      + + + +
        +
      • +

        setColor

        +
        public void setColor(java.lang.String color)
        +
        Sets the color of a label.
        +
        +
        Parameters:
        +
        color - A six digit HTML hex value including number sign (eg #ff0000)
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabMergeRequest.html b/org/gitlab/api/models/GitlabMergeRequest.html new file mode 100644 index 00000000..5e82301e --- /dev/null +++ b/org/gitlab/api/models/GitlabMergeRequest.html @@ -0,0 +1,918 @@ + + + + + +GitlabMergeRequest + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabMergeRequest

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabMergeRequest
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabMergeRequest

        +
        public GitlabMergeRequest()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getMilestoneId

        +
        @Deprecated
        +public java.lang.Integer getMilestoneId()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        setMilestoneId

        +
        @Deprecated
        +public void setMilestoneId(java.lang.Integer id)
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        getIid

        +
        public java.lang.Integer getIid()
        +
      • +
      + + + +
        +
      • +

        setIid

        +
        public void setIid(java.lang.Integer iid)
        +
      • +
      + + + +
        +
      • +

        getTargetBranch

        +
        public java.lang.String getTargetBranch()
        +
      • +
      + + + +
        +
      • +

        setTargetBranch

        +
        public void setTargetBranch(java.lang.String targetBranch)
        +
      • +
      + + + +
        +
      • +

        getSourceBranch

        +
        public java.lang.String getSourceBranch()
        +
      • +
      + + + +
        +
      • +

        setSourceBranch

        +
        public void setSourceBranch(java.lang.String sourceBranch)
        +
      • +
      + + + +
        +
      • +

        getProjectId

        +
        public java.lang.Integer getProjectId()
        +
      • +
      + + + +
        +
      • +

        setProjectId

        +
        public void setProjectId(java.lang.Integer projectId)
        +
      • +
      + + + +
        +
      • +

        getSourceProjectId

        +
        public java.lang.Integer getSourceProjectId()
        +
      • +
      + + + +
        +
      • +

        setSourceProjectId

        +
        public void setSourceProjectId(java.lang.Integer sourceProjectId)
        +
      • +
      + + + +
        +
      • +

        getTitle

        +
        public java.lang.String getTitle()
        +
      • +
      + + + +
        +
      • +

        setTitle

        +
        public void setTitle(java.lang.String title)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String d)
        +
      • +
      + + + +
        +
      • +

        isClosed

        +
        @Deprecated
        +public boolean isClosed()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        setClosed

        +
        @Deprecated
        +public void setClosed(boolean closed)
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        isMerged

        +
        @Deprecated
        +public boolean isMerged()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        setMerged

        +
        @Deprecated
        +public void setMerged(boolean merged)
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        getAuthor

        +
        public GitlabUser getAuthor()
        +
      • +
      + + + +
        +
      • +

        setAuthor

        +
        public void setAuthor(GitlabUser author)
        +
      • +
      + + + +
        +
      • +

        getAssignee

        +
        public GitlabUser getAssignee()
        +
      • +
      + + + +
        +
      • +

        setAssignee

        +
        public void setAssignee(GitlabUser assignee)
        +
      • +
      + + + +
        +
      • +

        getState

        +
        public java.lang.String getState()
        +
      • +
      + + + +
        +
      • +

        setState

        +
        public void setState(java.lang.String state)
        +
      • +
      + + + + + + + +
        +
      • +

        setMilestone

        +
        public void setMilestone(GitlabMilestone milestone)
        +
      • +
      + + + +
        +
      • +

        getLabels

        +
        public java.lang.String[] getLabels()
        +
      • +
      + + + +
        +
      • +

        setLabels

        +
        public void setLabels(java.lang.String[] labels)
        +
      • +
      + + + +
        +
      • +

        getUpvotes

        +
        public int getUpvotes()
        +
      • +
      + + + +
        +
      • +

        setUpvotes

        +
        public void setUpvotes(int upvotes)
        +
      • +
      + + + +
        +
      • +

        getDownvotes

        +
        public int getDownvotes()
        +
      • +
      + + + +
        +
      • +

        setDownvotes

        +
        public void setDownvotes(int downvotes)
        +
      • +
      + + + +
        +
      • +

        getTargetProjectId

        +
        public java.lang.Integer getTargetProjectId()
        +
      • +
      + + + +
        +
      • +

        setTargetProjectId

        +
        public void setTargetProjectId(java.lang.Integer targetProjectId)
        +
      • +
      + + + +
        +
      • +

        getUpdatedAt

        +
        public java.util.Date getUpdatedAt()
        +
      • +
      + + + +
        +
      • +

        setUpdatedAt

        +
        public void setUpdatedAt(java.util.Date updatedAt)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + + + + + +
        +
      • +

        setChanges

        +
        public void setChanges(java.util.List<GitlabCommitDiff> changes)
        +
      • +
      + + + +
        +
      • +

        getMergeStatus

        +
        public java.lang.String getMergeStatus()
        +
      • +
      + + + +
        +
      • +

        setMergeStatus

        +
        public void setMergeStatus(java.lang.String mergeStatus)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabMilestone.html b/org/gitlab/api/models/GitlabMilestone.html new file mode 100644 index 00000000..db74b6b7 --- /dev/null +++ b/org/gitlab/api/models/GitlabMilestone.html @@ -0,0 +1,530 @@ + + + + + +GitlabMilestone + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabMilestone

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabMilestone
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabMilestone() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabMilestone

        +
        public GitlabMilestone()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public int getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(int id)
        +
      • +
      + + + +
        +
      • +

        getIid

        +
        public int getIid()
        +
      • +
      + + + +
        +
      • +

        setIid

        +
        public void setIid(int iid)
        +
      • +
      + + + +
        +
      • +

        getProjectId

        +
        public int getProjectId()
        +
      • +
      + + + +
        +
      • +

        setProjectId

        +
        public void setProjectId(int projectId)
        +
      • +
      + + + +
        +
      • +

        getTitle

        +
        public java.lang.String getTitle()
        +
      • +
      + + + +
        +
      • +

        setTitle

        +
        public void setTitle(java.lang.String title)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      + + + +
        +
      • +

        getDueDate

        +
        public java.util.Date getDueDate()
        +
      • +
      + + + +
        +
      • +

        setDueDate

        +
        public void setDueDate(java.util.Date dueDate)
        +
      • +
      + + + +
        +
      • +

        getState

        +
        public java.lang.String getState()
        +
      • +
      + + + +
        +
      • +

        setState

        +
        public void setState(java.lang.String state)
        +
      • +
      + + + +
        +
      • +

        getUpdatedDate

        +
        public java.util.Date getUpdatedDate()
        +
      • +
      + + + +
        +
      • +

        setUpdatedDate

        +
        public void setUpdatedDate(java.util.Date updatedDate)
        +
      • +
      + + + +
        +
      • +

        getCreatedDate

        +
        public java.util.Date getCreatedDate()
        +
      • +
      + + + +
        +
      • +

        setCreatedDate

        +
        public void setCreatedDate(java.util.Date createdDate)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabNamespace.html b/org/gitlab/api/models/GitlabNamespace.html new file mode 100644 index 00000000..7e5b79c1 --- /dev/null +++ b/org/gitlab/api/models/GitlabNamespace.html @@ -0,0 +1,478 @@ + + + + + +GitlabNamespace + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabNamespace

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabNamespace
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabNamespace() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.util.DategetCreatedAt() 
      java.lang.StringgetDescription() 
      java.lang.IntegergetId() 
      java.lang.StringgetName() 
      java.lang.IntegergetOwnerId() 
      java.lang.StringgetPath() 
      java.util.DategetUpdatedAt() 
      voidsetCreatedAt(java.util.Date createdAt) 
      voidsetDescription(java.lang.String description) 
      voidsetId(java.lang.Integer id) 
      voidsetName(java.lang.String name) 
      voidsetOwnerId(java.lang.Integer ownerId) 
      voidsetPath(java.lang.String path) 
      voidsetUpdatedAt(java.util.Date updatedAt) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabNamespace

        +
        public GitlabNamespace()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + +
        +
      • +

        getUpdatedAt

        +
        public java.util.Date getUpdatedAt()
        +
      • +
      + + + +
        +
      • +

        setUpdatedAt

        +
        public void setUpdatedAt(java.util.Date updatedAt)
        +
      • +
      + + + +
        +
      • +

        getOwnerId

        +
        public java.lang.Integer getOwnerId()
        +
      • +
      + + + +
        +
      • +

        setOwnerId

        +
        public void setOwnerId(java.lang.Integer ownerId)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public java.lang.String getPath()
        +
      • +
      + + + +
        +
      • +

        setPath

        +
        public void setPath(java.lang.String path)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabNote.html b/org/gitlab/api/models/GitlabNote.html new file mode 100644 index 00000000..1e057ec0 --- /dev/null +++ b/org/gitlab/api/models/GitlabNote.html @@ -0,0 +1,504 @@ + + + + + +GitlabNote + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabNote

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabNote
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabNote() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabNote

        +
        public GitlabNote()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getBody

        +
        public java.lang.String getBody()
        +
      • +
      + + + +
        +
      • +

        setBody

        +
        public void setBody(java.lang.String body)
        +
      • +
      + + + +
        +
      • +

        getAuthor

        +
        public GitlabUser getAuthor()
        +
      • +
      + + + +
        +
      • +

        setAuthor

        +
        public void setAuthor(GitlabUser author)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + +
        +
      • +

        getAttachment

        +
        public java.lang.String getAttachment()
        +
      • +
      + + + +
        +
      • +

        setAttachment

        +
        public void setAttachment(java.lang.String attachment)
        +
      • +
      + + + +
        +
      • +

        isSystem

        +
        public boolean isSystem()
        +
      • +
      + + + +
        +
      • +

        setSystem

        +
        public void setSystem(boolean system)
        +
      • +
      + + + +
        +
      • +

        isUpvote

        +
        public boolean isUpvote()
        +
      • +
      + + + +
        +
      • +

        setUpvote

        +
        public void setUpvote(boolean upvote)
        +
      • +
      + + + +
        +
      • +

        isDownvote

        +
        public boolean isDownvote()
        +
      • +
      + + + +
        +
      • +

        setDownvote

        +
        public void setDownvote(boolean downvote)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabPermission.html b/org/gitlab/api/models/GitlabPermission.html new file mode 100644 index 00000000..a47f8ec3 --- /dev/null +++ b/org/gitlab/api/models/GitlabPermission.html @@ -0,0 +1,282 @@ + + + + + +GitlabPermission + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabPermission

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabPermission
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabProject.html b/org/gitlab/api/models/GitlabProject.html new file mode 100644 index 00000000..f1e2f0a7 --- /dev/null +++ b/org/gitlab/api/models/GitlabProject.html @@ -0,0 +1,1024 @@ + + + + + +GitlabProject + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabProject

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabProject
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabProject

        +
        public GitlabProject()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        getNameWithNamespace

        +
        public java.lang.String getNameWithNamespace()
        +
      • +
      + + + +
        +
      • +

        setNameWithNamespace

        +
        public void setNameWithNamespace(java.lang.String nameWithNamespace)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      + + + +
        +
      • +

        getDefaultBranch

        +
        public java.lang.String getDefaultBranch()
        +
      • +
      + + + +
        +
      • +

        setDefaultBranch

        +
        public void setDefaultBranch(java.lang.String defaultBranch)
        +
      • +
      + + + +
        +
      • +

        getVisibilityLevel

        +
        public java.lang.Integer getVisibilityLevel()
        +
      • +
      + + + +
        +
      • +

        setVisibilityLevel

        +
        public void setVisibilityLevel(java.lang.Integer visibilityLevel)
        +
      • +
      + + + + + + + +
        +
      • +

        setOwner

        +
        public void setOwner(GitlabUser owner)
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public java.lang.String getPath()
        +
      • +
      + + + +
        +
      • +

        setPath

        +
        public void setPath(java.lang.String path)
        +
      • +
      + + + +
        +
      • +

        getPathWithNamespace

        +
        public java.lang.String getPathWithNamespace()
        +
      • +
      + + + +
        +
      • +

        setPathWithNamespace

        +
        public void setPathWithNamespace(java.lang.String pathWithNamespace)
        +
      • +
      + + + +
        +
      • +

        isIssuesEnabled

        +
        public boolean isIssuesEnabled()
        +
      • +
      + + + +
        +
      • +

        setIssuesEnabled

        +
        public void setIssuesEnabled(boolean issuesEnabled)
        +
      • +
      + + + +
        +
      • +

        isMergeRequestsEnabled

        +
        public boolean isMergeRequestsEnabled()
        +
      • +
      + + + +
        +
      • +

        setMergeRequestsEnabled

        +
        public void setMergeRequestsEnabled(boolean mergeRequestsEnabled)
        +
      • +
      + + + +
        +
      • +

        isSnippetsEnabled

        +
        public boolean isSnippetsEnabled()
        +
      • +
      + + + +
        +
      • +

        setSnippetsEnabled

        +
        public void setSnippetsEnabled(boolean snippetsEnabled)
        +
      • +
      + + + +
        +
      • +

        isWallEnabled

        +
        public boolean isWallEnabled()
        +
      • +
      + + + +
        +
      • +

        setWallEnabled

        +
        public void setWallEnabled(boolean wallEnabled)
        +
      • +
      + + + +
        +
      • +

        isWikiEnabled

        +
        public boolean isWikiEnabled()
        +
      • +
      + + + +
        +
      • +

        setWikiEnabled

        +
        public void setWikiEnabled(boolean wikiEnabled)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + +
        +
      • +

        getSshUrl

        +
        public java.lang.String getSshUrl()
        +
      • +
      + + + +
        +
      • +

        setSshUrl

        +
        public void setSshUrl(java.lang.String sshUrl)
        +
      • +
      + + + +
        +
      • +

        getWebUrl

        +
        public java.lang.String getWebUrl()
        +
      • +
      + + + +
        +
      • +

        setWebUrl

        +
        public void setWebUrl(java.lang.String webUrl)
        +
      • +
      + + + +
        +
      • +

        getHttpUrl

        +
        public java.lang.String getHttpUrl()
        +
      • +
      + + + +
        +
      • +

        setHttpUrl

        +
        public void setHttpUrl(java.lang.String httpUrl)
        +
      • +
      + + + + + + + +
        +
      • +

        setNamespace

        +
        public void setNamespace(GitlabNamespace namespace)
        +
      • +
      + + + +
        +
      • +

        isPublic

        +
        public boolean isPublic()
        +
      • +
      + + + +
        +
      • +

        setPublic

        +
        public void setPublic(boolean aPublic)
        +
      • +
      + + + +
        +
      • +

        isArchived

        +
        public boolean isArchived()
        +
      • +
      + + + +
        +
      • +

        setArchived

        +
        public void setArchived(boolean archived)
        +
      • +
      + + + +
        +
      • +

        getLastActivityAt

        +
        public java.util.Date getLastActivityAt()
        +
      • +
      + + + +
        +
      • +

        setLastActivityAt

        +
        public void setLastActivityAt(java.util.Date lastActivityAt)
        +
      • +
      + + + + + + + +
        +
      • +

        setPermissions

        +
        public void setPermissions(GitlabPermission permissions)
        +
      • +
      + + + +
        +
      • +

        getAvatarUrl

        +
        public java.lang.String getAvatarUrl()
        +
      • +
      + + + +
        +
      • +

        setAvatarUrl

        +
        public void setAvatarUrl(java.lang.String avatarUrl)
        +
      • +
      + + + +
        +
      • +

        getCreatorId

        +
        public java.lang.Integer getCreatorId()
        +
      • +
      + + + +
        +
      • +

        setCreatorId

        +
        public void setCreatorId(java.lang.Integer creatorId)
        +
      • +
      + + + +
        +
      • +

        getStarCount

        +
        public java.lang.Integer getStarCount()
        +
      • +
      + + + +
        +
      • +

        setStarCount

        +
        public void setStarCount(java.lang.Integer starCount)
        +
      • +
      + + + +
        +
      • +

        getForksCount

        +
        public java.lang.Integer getForksCount()
        +
      • +
      + + + +
        +
      • +

        setForksCount

        +
        public void setForksCount(java.lang.Integer forksCount)
        +
      • +
      + + + +
        +
      • +

        getTagList

        +
        public java.util.List<java.lang.String> getTagList()
        +
      • +
      + + + +
        +
      • +

        setTagList

        +
        public void setTagList(java.util.List<java.lang.String> tagList)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabProjectAccessLevel.html b/org/gitlab/api/models/GitlabProjectAccessLevel.html new file mode 100644 index 00000000..4e3e057c --- /dev/null +++ b/org/gitlab/api/models/GitlabProjectAccessLevel.html @@ -0,0 +1,308 @@ + + + + + +GitlabProjectAccessLevel + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabProjectAccessLevel

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabProjectAccessLevel
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabProjectAccessLevel

        +
        public GitlabProjectAccessLevel()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + + + + + +
        +
      • +

        getNoficationLevel

        +
        public int getNoficationLevel()
        +
      • +
      + + + +
        +
      • +

        setNoficationLevel

        +
        public void setNoficationLevel(int notificationLevel)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabProjectHook.html b/org/gitlab/api/models/GitlabProjectHook.html new file mode 100644 index 00000000..9d3fa83f --- /dev/null +++ b/org/gitlab/api/models/GitlabProjectHook.html @@ -0,0 +1,504 @@ + + + + + +GitlabProjectHook + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabProjectHook

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabProjectHook
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabProjectHook

        +
        public GitlabProjectHook()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.String getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.String id)
        +
      • +
      + + + +
        +
      • +

        getUrl

        +
        public java.lang.String getUrl()
        +
      • +
      + + + +
        +
      • +

        setUrl

        +
        public void setUrl(java.lang.String url)
        +
      • +
      + + + +
        +
      • +

        getProjectId

        +
        public java.lang.Integer getProjectId()
        +
      • +
      + + + +
        +
      • +

        setProjectId

        +
        public void setProjectId(java.lang.Integer projectId)
        +
      • +
      + + + +
        +
      • +

        getPushEvents

        +
        public boolean getPushEvents()
        +
      • +
      + + + +
        +
      • +

        setPushEvents

        +
        public void setPushEvents(boolean pushEvents)
        +
      • +
      + + + +
        +
      • +

        getIssueEvents

        +
        public boolean getIssueEvents()
        +
      • +
      + + + +
        +
      • +

        setIssueEvents

        +
        public void setIssueEvents(boolean issueEvents)
        +
      • +
      + + + +
        +
      • +

        isMergeRequestsEvents

        +
        public boolean isMergeRequestsEvents()
        +
      • +
      + + + +
        +
      • +

        setMergeRequestsEvents

        +
        public void setMergeRequestsEvents(boolean mergeRequestsEvents)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + +
        +
      • +

        isSslVerificationEnabled

        +
        public boolean isSslVerificationEnabled()
        +
      • +
      + + + +
        +
      • +

        setSslVerificationEnabled

        +
        public void setSslVerificationEnabled(boolean sslVerificationEnabled)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabProjectMember.html b/org/gitlab/api/models/GitlabProjectMember.html new file mode 100644 index 00000000..84cb316c --- /dev/null +++ b/org/gitlab/api/models/GitlabProjectMember.html @@ -0,0 +1,281 @@ + + + + + +GitlabProjectMember + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabProjectMember

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabProjectMember

        +
        public GitlabProjectMember()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabRelease.html b/org/gitlab/api/models/GitlabRelease.html new file mode 100644 index 00000000..064525b4 --- /dev/null +++ b/org/gitlab/api/models/GitlabRelease.html @@ -0,0 +1,308 @@ + + + + + +GitlabRelease + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabRelease

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabRelease
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabRelease() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetDescription() 
      java.lang.StringgetTagName() 
      voidsetDescription(java.lang.String description) 
      voidsetTagName(java.lang.String tagName) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabRelease

        +
        public GitlabRelease()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getTagName

        +
        public java.lang.String getTagName()
        +
      • +
      + + + +
        +
      • +

        setTagName

        +
        public void setTagName(java.lang.String tagName)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabRepositoryTree.html b/org/gitlab/api/models/GitlabRepositoryTree.html new file mode 100644 index 00000000..b10ed2c8 --- /dev/null +++ b/org/gitlab/api/models/GitlabRepositoryTree.html @@ -0,0 +1,396 @@ + + + + + +GitlabRepositoryTree + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabRepositoryTree

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabRepositoryTree
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetId() 
      java.lang.StringgetMode() 
      java.lang.StringgetName() 
      java.lang.StringgetType() 
      voidsetId(java.lang.String id) 
      voidsetMode(java.lang.String mode) 
      voidsetName(java.lang.String name) 
      voidsetType(java.lang.String type) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        URL

        +
        public static java.lang.String URL
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabRepositoryTree

        +
        public GitlabRepositoryTree()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        getType

        +
        public java.lang.String getType()
        +
      • +
      + + + +
        +
      • +

        setType

        +
        public void setType(java.lang.String type)
        +
      • +
      + + + +
        +
      • +

        getMode

        +
        public java.lang.String getMode()
        +
      • +
      + + + +
        +
      • +

        setMode

        +
        public void setMode(java.lang.String mode)
        +
      • +
      + + + +
        +
      • +

        getId

        +
        public java.lang.String getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.String id)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabRunner.html b/org/gitlab/api/models/GitlabRunner.html new file mode 100644 index 00000000..516d0a84 --- /dev/null +++ b/org/gitlab/api/models/GitlabRunner.html @@ -0,0 +1,386 @@ + + + + + +GitlabRunner + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabRunner

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabRunner
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabRunner() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.BooleangetActive() 
      java.lang.StringgetDescription() 
      java.lang.IntegergetId() 
      java.lang.StringgetName() 
      java.lang.BooleangetShared() 
      voidsetActive(java.lang.Boolean active) 
      voidsetDescription(java.lang.String description) 
      voidsetId(java.lang.Integer id) 
      voidsetName(java.lang.String name) 
      voidsetShared(java.lang.Boolean shared) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabRunner

        +
        public GitlabRunner()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(java.lang.String description)
        +
      • +
      + + + +
        +
      • +

        getActive

        +
        public java.lang.Boolean getActive()
        +
      • +
      + + + +
        +
      • +

        setActive

        +
        public void setActive(java.lang.Boolean active)
        +
      • +
      + + + +
        +
      • +

        getShared

        +
        public java.lang.Boolean getShared()
        +
      • +
      + + + +
        +
      • +

        setShared

        +
        public void setShared(java.lang.Boolean shared)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabSSHKey.html b/org/gitlab/api/models/GitlabSSHKey.html new file mode 100644 index 00000000..0fad7fdd --- /dev/null +++ b/org/gitlab/api/models/GitlabSSHKey.html @@ -0,0 +1,396 @@ + + + + + +GitlabSSHKey + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabSSHKey

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabSSHKey
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringKEYS_URL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabSSHKey() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.IntegergetId() 
      java.lang.StringgetKey() 
      java.lang.StringgetTitle() 
      GitlabUsergetUser() 
      voidsetId(java.lang.Integer id) 
      voidsetKey(java.lang.String key) 
      voidsetTitle(java.lang.String title) 
      voidsetUser(GitlabUser user) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        KEYS_URL

        +
        public static java.lang.String KEYS_URL
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabSSHKey

        +
        public GitlabSSHKey()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getTitle

        +
        public java.lang.String getTitle()
        +
      • +
      + + + +
        +
      • +

        setTitle

        +
        public void setTitle(java.lang.String title)
        +
      • +
      + + + +
        +
      • +

        getKey

        +
        public java.lang.String getKey()
        +
      • +
      + + + +
        +
      • +

        setKey

        +
        public void setKey(java.lang.String key)
        +
      • +
      + + + + + + + +
        +
      • +

        setUser

        +
        public void setUser(GitlabUser user)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabSession.html b/org/gitlab/api/models/GitlabSession.html new file mode 100644 index 00000000..97847127 --- /dev/null +++ b/org/gitlab/api/models/GitlabSession.html @@ -0,0 +1,349 @@ + + + + + +GitlabSession + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabSession

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabSession
    +extends GitlabUser
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabSession

        +
        public GitlabSession()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabSystemHook.html b/org/gitlab/api/models/GitlabSystemHook.html new file mode 100644 index 00000000..a85c2efe --- /dev/null +++ b/org/gitlab/api/models/GitlabSystemHook.html @@ -0,0 +1,374 @@ + + + + + +GitlabSystemHook + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabSystemHook

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabSystemHook
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringURL 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GitlabSystemHook() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.util.DategetCreatedAt() 
      java.lang.IntegergetId() 
      java.lang.StringgetUrl() 
      voidsetCreatedAt(java.util.Date createdAt) 
      voidsetId(java.lang.Integer id) 
      voidsetUrl(java.lang.String url) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabSystemHook

        +
        public GitlabSystemHook()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getUrl

        +
        public java.lang.String getUrl()
        +
      • +
      + + + +
        +
      • +

        setUrl

        +
        public void setUrl(java.lang.String url)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabTag.html b/org/gitlab/api/models/GitlabTag.html new file mode 100644 index 00000000..e1c2d24b --- /dev/null +++ b/org/gitlab/api/models/GitlabTag.html @@ -0,0 +1,400 @@ + + + + + +GitlabTag + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabTag

+
+
+ +
+
    +
  • +
    +
    +
    public class GitlabTag
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabTag

        +
        public GitlabTag()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + + + + + + + + + +
        +
      • +

        setRelease

        +
        public void setRelease(GitlabRelease release)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        getMessage

        +
        public java.lang.String getMessage()
        +
      • +
      + + + +
        +
      • +

        setMessage

        +
        public void setMessage(java.lang.String message)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/GitlabUser.html b/org/gitlab/api/models/GitlabUser.html new file mode 100644 index 00000000..1be4188b --- /dev/null +++ b/org/gitlab/api/models/GitlabUser.html @@ -0,0 +1,972 @@ + + + + + +GitlabUser + + + + + + + + +
+ + + + + + + +
+ + + +
+
org.gitlab.api.models
+

Class GitlabUser

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        URL

        +
        public static java.lang.String URL
        +
      • +
      + + + +
        +
      • +

        USERS_URL

        +
        public static java.lang.String USERS_URL
        +
      • +
      + + + +
        +
      • +

        USER_URL

        +
        public static java.lang.String USER_URL
        +
      • +
      + + + +
        +
      • +

        BLOCK_URL

        +
        public static java.lang.String BLOCK_URL
        +
      • +
      + + + +
        +
      • +

        UNBLOCK_URL

        +
        public static java.lang.String UNBLOCK_URL
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GitlabUser

        +
        public GitlabUser()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public java.lang.Integer getId()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(java.lang.Integer id)
        +
      • +
      + + + +
        +
      • +

        getUsername

        +
        public java.lang.String getUsername()
        +
      • +
      + + + +
        +
      • +

        setUsername

        +
        public void setUsername(java.lang.String userName)
        +
      • +
      + + + +
        +
      • +

        getEmail

        +
        public java.lang.String getEmail()
        +
      • +
      + + + +
        +
      • +

        setEmail

        +
        public void setEmail(java.lang.String email)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        isBlocked

        +
        public boolean isBlocked()
        +
      • +
      + + + +
        +
      • +

        setBlocked

        +
        public void setBlocked(boolean blocked)
        +
      • +
      + + + +
        +
      • +

        getCreatedAt

        +
        public java.util.Date getCreatedAt()
        +
      • +
      + + + +
        +
      • +

        setCreatedAt

        +
        public void setCreatedAt(java.util.Date createdAt)
        +
      • +
      + + + +
        +
      • +

        getBio

        +
        public java.lang.String getBio()
        +
      • +
      + + + +
        +
      • +

        setBio

        +
        public void setBio(java.lang.String bio)
        +
      • +
      + + + +
        +
      • +

        getSkype

        +
        public java.lang.String getSkype()
        +
      • +
      + + + +
        +
      • +

        setSkype

        +
        public void setSkype(java.lang.String skype)
        +
      • +
      + + + +
        +
      • +

        getLinkedin

        +
        public java.lang.String getLinkedin()
        +
      • +
      + + + +
        +
      • +

        setLinkedin

        +
        public void setLinkedin(java.lang.String linkedin)
        +
      • +
      + + + +
        +
      • +

        getTwitter

        +
        public java.lang.String getTwitter()
        +
      • +
      + + + +
        +
      • +

        setTwitter

        +
        public void setTwitter(java.lang.String twitter)
        +
      • +
      + + + +
        +
      • +

        isDarkScheme

        +
        public boolean isDarkScheme()
        +
      • +
      + + + +
        +
      • +

        setDarkScheme

        +
        public void setDarkScheme(boolean darkScheme)
        +
      • +
      + + + +
        +
      • +

        getThemeId

        +
        public java.lang.Integer getThemeId()
        +
      • +
      + + + +
        +
      • +

        setThemeId

        +
        public void setThemeId(java.lang.Integer themeId)
        +
      • +
      + + + +
        +
      • +

        getExternUid

        +
        public java.lang.String getExternUid()
        +
      • +
      + + + +
        +
      • +

        setExternUid

        +
        public void setExternUid(java.lang.String externUid)
        +
      • +
      + + + +
        +
      • +

        getProvider

        +
        public java.lang.String getProvider()
        +
      • +
      + + + +
        +
      • +

        setProvider

        +
        public void setProvider(java.lang.String provider)
        +
      • +
      + + + +
        +
      • +

        getState

        +
        public java.lang.String getState()
        +
      • +
      + + + +
        +
      • +

        setState

        +
        public void setState(java.lang.String state)
        +
      • +
      + + + +
        +
      • +

        getExternProviderName

        +
        public java.lang.String getExternProviderName()
        +
      • +
      + + + +
        +
      • +

        setExternProviderName

        +
        public void setExternProviderName(java.lang.String externProviderName)
        +
      • +
      + + + +
        +
      • +

        getWebsiteUrl

        +
        public java.lang.String getWebsiteUrl()
        +
      • +
      + + + +
        +
      • +

        setWebsiteUrl

        +
        public void setWebsiteUrl(java.lang.String websiteUrl)
        +
      • +
      + + + +
        +
      • +

        isAdmin

        +
        public boolean isAdmin()
        +
      • +
      + + + +
        +
      • +

        setAdmin

        +
        public void setAdmin(boolean admin)
        +
      • +
      + + + +
        +
      • +

        isCanCreateGroup

        +
        public boolean isCanCreateGroup()
        +
      • +
      + + + +
        +
      • +

        setCanCreateGroup

        +
        public void setCanCreateGroup(boolean canCreateGroup)
        +
      • +
      + + + +
        +
      • +

        isCanCreateProject

        +
        public boolean isCanCreateProject()
        +
      • +
      + + + +
        +
      • +

        setCanCreateProject

        +
        public void setCanCreateProject(boolean canCreateProject)
        +
      • +
      + + + +
        +
      • +

        isCanCreateTeam

        +
        public boolean isCanCreateTeam()
        +
      • +
      + + + +
        +
      • +

        setCanCreateTeam

        +
        public void setCanCreateTeam(boolean canCreateTeam)
        +
      • +
      + + + +
        +
      • +

        getAvatarUrl

        +
        public java.lang.String getAvatarUrl()
        +
      • +
      + + + +
        +
      • +

        setAvatarUrl

        +
        public void setAvatarUrl(java.lang.String avatarUrl)
        +
      • +
      + + + +
        +
      • +

        getColorSchemeId

        +
        public java.lang.Integer getColorSchemeId()
        +
      • +
      + + + +
        +
      • +

        setColorSchemeId

        +
        public void setColorSchemeId(java.lang.Integer colorSchemeId)
        +
      • +
      + + + +
        +
      • +

        getPrivateToken

        +
        public java.lang.String getPrivateToken()
        +
      • +
      + + + +
        +
      • +

        setPrivateToken

        +
        public void setPrivateToken(java.lang.String privateToken)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/package-frame.html b/org/gitlab/api/models/package-frame.html new file mode 100644 index 00000000..805cf223 --- /dev/null +++ b/org/gitlab/api/models/package-frame.html @@ -0,0 +1,54 @@ + + + + + +org.gitlab.api.models + + + + + +

org.gitlab.api.models

+
+

Classes

+ +

Enums

+ +
+ + diff --git a/org/gitlab/api/models/package-summary.html b/org/gitlab/api/models/package-summary.html new file mode 100644 index 00000000..38ea9e89 --- /dev/null +++ b/org/gitlab/api/models/package-summary.html @@ -0,0 +1,277 @@ + + + + + +org.gitlab.api.models + + + + + + + + +
+ + + + + + + +
+ + +
+

Package org.gitlab.api.models

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/models/package-tree.html b/org/gitlab/api/models/package-tree.html new file mode 100644 index 00000000..bd473080 --- /dev/null +++ b/org/gitlab/api/models/package-tree.html @@ -0,0 +1,183 @@ + + + + + +org.gitlab.api.models Class Hierarchy + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package org.gitlab.api.models

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/package-frame.html b/org/gitlab/api/package-frame.html new file mode 100644 index 00000000..e02bb339 --- /dev/null +++ b/org/gitlab/api/package-frame.html @@ -0,0 +1,30 @@ + + + + + +org.gitlab.api + + + + + +

org.gitlab.api

+
+

Classes

+ +

Enums

+ +

Exceptions

+ +
+ + diff --git a/org/gitlab/api/package-summary.html b/org/gitlab/api/package-summary.html new file mode 100644 index 00000000..e7ce2487 --- /dev/null +++ b/org/gitlab/api/package-summary.html @@ -0,0 +1,182 @@ + + + + + +org.gitlab.api + + + + + + + + +
+ + + + + + + +
+ + +
+

Package org.gitlab.api

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/org/gitlab/api/package-tree.html b/org/gitlab/api/package-tree.html new file mode 100644 index 00000000..d6b4fa97 --- /dev/null +++ b/org/gitlab/api/package-tree.html @@ -0,0 +1,162 @@ + + + + + +org.gitlab.api Class Hierarchy + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package org.gitlab.api

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + + + +
+ + + + diff --git a/overview-frame.html b/overview-frame.html new file mode 100644 index 00000000..5aa50075 --- /dev/null +++ b/overview-frame.html @@ -0,0 +1,22 @@ + + + + + +Overview List + + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/overview-summary.html b/overview-summary.html new file mode 100644 index 00000000..4a9e854e --- /dev/null +++ b/overview-summary.html @@ -0,0 +1,137 @@ + + + + + +Overview + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + +
Packages 
PackageDescription
org.gitlab.api 
org.gitlab.api.models 
+
+ +
+ + + + + + + +
+ + + + diff --git a/overview-tree.html b/overview-tree.html new file mode 100644 index 00000000..d83a5e6f --- /dev/null +++ b/overview-tree.html @@ -0,0 +1,201 @@ + + + + + +Class Hierarchy + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + + + +
+ + + + diff --git a/package-list b/package-list new file mode 100644 index 00000000..4d5653c9 --- /dev/null +++ b/package-list @@ -0,0 +1,2 @@ +org.gitlab.api +org.gitlab.api.models diff --git a/script.js b/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/serialized-form.html b/serialized-form.html new file mode 100644 index 00000000..b5b994be --- /dev/null +++ b/serialized-form.html @@ -0,0 +1,146 @@ + + + + + +Serialized Form + + + + + + + + +
+ + + + + + + +
+ + +
+

Serialized Form

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 00000000..cebb4fd8 --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; + width:100%; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} From 00d9bcc59bd53c86c0eb272ccab7cef0e6548b45 Mon Sep 17 00:00:00 2001 From: timols Date: Tue, 22 Mar 2016 11:29:28 -0700 Subject: [PATCH 2/3] Initial commit --- index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 00000000..e69de29b From 43ed868ffa360f2da99776e6f368893b743623cb Mon Sep 17 00:00:00 2001 From: timols Date: Tue, 22 Mar 2016 15:57:49 -0700 Subject: [PATCH 3/3] Updated title --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f81f7c5c..4d37a61d 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ -Generated Documentation (Untitled) +Java Gitlab API Documentation