GitLabApi |
GitLabApi.duplicate() |
Create a new GitLabApi instance that is logically a duplicate of this instance, with the exception of sudo state.
|
static GitLabApi |
GitLabApi.oauth2Login(String url,
String username,
char[] password) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
static GitLabApi |
GitLabApi.oauth2Login(String url,
String username,
char[] password,
boolean ignoreCertificateErrors) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
static GitLabApi |
GitLabApi.oauth2Login(String url,
String username,
char[] password,
String secretToken,
Map<String,Object> clientConfigProperties,
boolean ignoreCertificateErrors) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
static GitLabApi |
GitLabApi.oauth2Login(String url,
String username,
CharSequence password) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
static GitLabApi |
GitLabApi.oauth2Login(String url,
String username,
CharSequence password,
boolean ignoreCertificateErrors) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
static GitLabApi |
GitLabApi.oauth2Login(String url,
String username,
CharSequence password,
String secretToken,
Map<String,Object> clientConfigProperties,
boolean ignoreCertificateErrors) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
static GitLabApi |
GitLabApi.oauth2Login(GitLabApi.ApiVersion apiVersion,
String url,
String username,
char[] password,
String secretToken,
Map<String,Object> clientConfigProperties,
boolean ignoreCertificateErrors) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
static GitLabApi |
GitLabApi.oauth2Login(GitLabApi.ApiVersion apiVersion,
String url,
String username,
CharSequence password,
String secretToken,
Map<String,Object> clientConfigProperties,
boolean ignoreCertificateErrors) |
Logs into GitLab using OAuth2 with the provided username and password ,
and creates a new GitLabApi instance using returned access token.
|
GitLabApi |
GitLabApi.withRequestResponseLogging() |
Enable the logging of the requests to and the responses from the GitLab server API
using the GitLab4J shared Logger instance and Level.FINE as the level.
|
GitLabApi |
GitLabApi.withRequestResponseLogging(Level level) |
Enable the logging of the requests to and the responses from the GitLab server API
using the GitLab4J shared Logger instance.
|
GitLabApi |
GitLabApi.withRequestResponseLogging(Logger logger,
Level level) |
Enable the logging of the requests to and the responses from the GitLab server API.
|
GitLabApi |
GitLabApi.withRequestTimeout(Integer connectTimeout,
Integer readTimeout) |
Fluent method that sets the per request connect and read timeout.
|