Uses of Class
org.gitlab4j.api.models.WikiPage
-
Packages that use WikiPage Package Description org.gitlab4j.api -
-
Uses of WikiPage in org.gitlab4j.api
Methods in org.gitlab4j.api that return WikiPage Modifier and Type Method 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.Methods in org.gitlab4j.api that return types with arguments of type WikiPage Modifier and Type Method 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, int page, int perPage)
Get a list of pages in project wiki for the specified page.
-