Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
Modifier and Type | Method | Description |
---|---|---|
Epic |
EpicsApi.createEpic(Object groupIdOrPath,
String title,
String labels,
String description,
Date startDate,
Date endDate) |
Creates a new epic.
|
Epic |
EpicsApi.createEpic(Object groupIdOrPath,
Epic epic) |
Creates a new epic using the information contained in the provided Epic instance.
|
Epic |
EpicsApi.getEpic(Object groupIdOrPath,
Integer epicIid) |
Get a single epic for the specified group.
|
Epic |
EpicsApi.updateEpic(Object groupIdOrPath,
Integer epicIid,
String title,
String labels,
String description,
Date startDate,
Date endDate) |
Updates an existing epic.
|
Epic |
EpicsApi.updateEpic(Object groupIdOrPath,
Integer epicIid,
Epic epic) |
Updates an epic using the information contained in the provided Epic instance.
|
Modifier and Type | Method | Description |
---|---|---|
List<Epic> |
EpicsApi.getEpicIssues(Object groupIdOrPath,
Integer epicIid) |
Gets all issues that are assigned to an epic and the authenticated user has access to.
|
Pager<Epic> |
EpicsApi.getEpicIssues(Object groupIdOrPath,
Integer epicIid,
int itemsPerPage) |
Get a Pager of all issues that are assigned to an epic and the authenticated user has access to.
|
List<Epic> |
EpicsApi.getEpicIssues(Object groupIdOrPath,
Integer epicIid,
int page,
int perPage) |
Gets all issues that are assigned to an epic and the authenticated user has access to
using the specified page and per page setting.
|
List<Epic> |
EpicsApi.getEpics(Object groupIdOrPath) |
Gets all epics of the requested group and its subgroups.
|
Pager<Epic> |
EpicsApi.getEpics(Object groupIdOrPath,
int itemsPerPage) |
Get a Pager of all epics of the requested group and its subgroups.
|
List<Epic> |
EpicsApi.getEpics(Object groupIdOrPath,
int page,
int perPage) |
Gets all epics of the requested group and its subgroups using the specified page and per page setting.
|
List<Epic> |
EpicsApi.getEpics(Object groupIdOrPath,
Integer authorId,
String labels,
Constants.EpicOrderBy orderBy,
Constants.SortOrder sortOrder,
String search) |
Gets all epics of the requested group and its subgroups.
|
Pager<Epic> |
EpicsApi.getEpics(Object groupIdOrPath,
Integer authorId,
String labels,
Constants.EpicOrderBy orderBy,
Constants.SortOrder sortOrder,
String search,
int itemsPerPage) |
Get a Pager of all epics of the requested group and its subgroups.
|
List<Epic> |
EpicsApi.getEpics(Object groupIdOrPath,
Integer authorId,
String labels,
Constants.EpicOrderBy orderBy,
Constants.SortOrder sortOrder,
String search,
int page,
int perPage) |
Gets all epics of the requested group and its subgroups using the specified page and per page setting.
|
Optional<Epic> |
EpicsApi.getOptionalEpic(Object groupIdOrPath,
Integer epicIid) |
Get an Optional instance with the value for the specific Epic.
|
Modifier and Type | Method | Description |
---|---|---|
Epic |
EpicsApi.createEpic(Object groupIdOrPath,
Epic epic) |
Creates a new epic using the information contained in the provided Epic instance.
|
Epic |
EpicsApi.updateEpic(Object groupIdOrPath,
Integer epicIid,
Epic epic) |
Updates an epic using the information contained in the provided Epic instance.
|
Modifier and Type | Method | Description |
---|---|---|
Epic |
Epic.withAuthor(Author author) |
|
Epic |
Epic.withDescription(String description) |
|
Epic |
Epic.withEndDate(Date endDate) |
|
Epic |
Epic.withLabels(List<String> labels) |
|
Epic |
Epic.withStartDate(Date startDate) |
|
Epic |
Epic.withTitle(String title) |
Copyright © 2018. All rights reserved.