Package | Description |
---|---|
org.gitlab4j.api |
Modifier and Type | Method and Description |
---|---|
WikiPage |
WikisApi.createPage(Object projectIdOrPath,
String title,
String content)
Creates a new project wiki page.
|
WikiPage |
WikisApi.getPage(Object projectIdOrPath,
String slug)
Get a single page of project wiki.
|
WikiPage |
WikisApi.updatePage(Object projectIdOrPath,
String slug,
String title,
String content)
Updates an existing project wiki page.
|
Modifier and Type | Method and Description |
---|---|
Optional<WikiPage> |
WikisApi.getOptionalPage(Object projectIdOrPath,
String slug)
Get a single page of project wiki as an Optional instance.
|
List<WikiPage> |
WikisApi.getPages(Object projectIdOrPath)
Get a list of pages in project wiki.
|
List<WikiPage> |
WikisApi.getPages(Object projectIdOrPath,
boolean withContent)
Get a List of pages in project wiki.
|
Pager<WikiPage> |
WikisApi.getPages(Object projectIdOrPath,
boolean withContent,
int itemsPerPage)
Get a Pager of pages in project wiki.
|
Pager<WikiPage> |
WikisApi.getPages(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of pages in project wiki.
|
List<WikiPage> |
WikisApi.getPages(Object projectIdOrPath,
int page,
int perPage)
Deprecated.
Will be removed in a future release, use
WikisApi.getPages(Object, boolean, int) |
Stream<WikiPage> |
WikisApi.getPagesStream(Object projectIdOrPath)
Get a Stream of pages in project wiki.
|
Stream<WikiPage> |
WikisApi.getPagesStream(Object projectIdOrPath,
boolean withContent)
Get a Stream of pages in project wiki.
|
Copyright © 2020. All rights reserved.