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.
|
Stream<Epic> |
EpicsApi.getEpicIssuesStream(Object groupIdOrPath,
Integer 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,
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.
|
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,
Integer 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,
Integer epicIid) |
Get an Optional instance with the value for the specific Epic.
|