-
Methods in org.gitlab4j.api that return Epic
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,
Long epicIid) |
Get a single epic for the specified group.
|
Epic |
EpicsApi.updateEpic(Object groupIdOrPath,
Long epicIid,
String title,
String labels,
String description,
Date startDate,
Date endDate) |
Updates an existing epic.
|
Epic |
EpicsApi.updateEpic(Object groupIdOrPath,
Long epicIid,
Epic epic) |
Updates an epic using the information contained in the provided Epic instance.
|
Methods in org.gitlab4j.api that return types with arguments of type Epic
Modifier and Type |
Method |
Description |
List<Epic> |
EpicsApi.getEpicIssues(Object groupIdOrPath,
Long epicIid) |
Gets all issues that are assigned to an epic and the authenticated user has access to.
|
Pager<Epic> |
EpicsApi.getEpicIssues(Object groupIdOrPath,
Long 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,
Long 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.
|
Stream<Epic> |
EpicsApi.getEpicIssuesStream(Object groupIdOrPath,
Long epicIid) |
Gets all issues that are assigned to an epic and the authenticated user has access to as a Stream.
|
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,
Long 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,
Long 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,
Long 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.
|
Stream<Epic> |
EpicsApi.getEpicsStream(Object groupIdOrPath) |
Gets all epics of the requested group and its subgroups as a Stream.
|
Stream<Epic> |
EpicsApi.getEpicsStream(Object groupIdOrPath,
Long authorId,
String labels,
Constants.EpicOrderBy orderBy,
Constants.SortOrder sortOrder,
String search) |
Gets all epics of the requested group and its subgroups as a Stream.
|
Optional<Epic> |
EpicsApi.getOptionalEpic(Object groupIdOrPath,
Long epicIid) |
Get an Optional instance with the value for the specific Epic.
|
Methods in org.gitlab4j.api with parameters of type 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,
Long epicIid,
Epic epic) |
Updates an epic using the information contained in the provided Epic instance.
|
-