Uses of Class
org.bonitasoft.web.client.model.Page
-
Packages that use Page Package Description org.bonitasoft.web.client.api org.bonitasoft.web.client.model org.bonitasoft.web.client.services org.bonitasoft.web.client.services.impl -
-
Uses of Page in org.bonitasoft.web.client.api
Methods in org.bonitasoft.web.client.api that return Page Modifier and Type Method Description PagePageApi. createPage(PageCreateRequest body)Create the Page Upload the page content using the `portal/pageUpload` .PagePageApi. getPageById(String id)Finds the Page by ID Returns the single Page for the given IDMethods in org.bonitasoft.web.client.api that return types with arguments of type Page Modifier and Type Method Description ApiResponse<Page>PageApi. createPageWithHttpInfo(PageCreateRequest body)Create the Page Similar tocreatePagebut it also returns the http response headers .ApiResponse<Page>PageApi. getPageByIdWithHttpInfo(String id)Finds the Page by ID Similar togetPageByIdbut it also returns the http response headers .List<Page>PageApi. searchPages(Integer p, Integer c, List<String> f, String o, String s)Finds Pages Finds Pages with pagination params and filters - can search on `displayName`,`description` - can filter on `createdBy`,`contentType`List<Page>PageApi. searchPages(Map<String,Object> queryParams)Finds Pages Finds Pages with pagination params and filters - can search on `displayName`,`description` - can filter on `createdBy`,`contentType` Note, this is equivalent to the othersearchPagesmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<Page>>PageApi. searchPagesWithHttpInfo(Integer p, Integer c, List<String> f, String o, String s)Finds Pages Similar tosearchPagesbut it also returns the http response headers .ApiResponse<List<Page>>PageApi. searchPagesWithHttpInfo(Map<String,Object> queryParams)Finds Pages Finds Pages with pagination params and filters - can search on `displayName`,`description` - can filter on `createdBy`,`contentType` Note, this is equivalent to the othersearchPagesthat receives the query parameters as a map, but this one also exposes the Http response headers -
Uses of Page in org.bonitasoft.web.client.model
Methods in org.bonitasoft.web.client.model that return Page Modifier and Type Method Description PagePage. contentName(String contentName)PagePage. createdBy(String createdBy)PagePage. creationDate(String creationDate)PagePage. description(String description)PagePage. displayName(String displayName)PagePage. id(String id)PagePage. isProvided(Boolean isProvided)PagePage. lastUpdateDate(String lastUpdateDate)PagePage. updatedBy(String updatedBy)PagePage. urlToken(String urlToken) -
Uses of Page in org.bonitasoft.web.client.services
Methods in org.bonitasoft.web.client.services that return Page Modifier and Type Method Description PageApplicationService. getPage(String token)Return the page for the given toke or throw aNotFoundExceptionPageApplicationService. importPage(File pageZip)Methods in org.bonitasoft.web.client.services that return types with arguments of type Page Modifier and Type Method Description List<Page>ApplicationService. searchPages(int page, int count)List<Page>ApplicationService. searchPages(PageApi.SearchPagesQueryParams params) -
Uses of Page in org.bonitasoft.web.client.services.impl
Methods in org.bonitasoft.web.client.services.impl that return Page Modifier and Type Method Description PageDefaultApplicationService. getPage(String token)PageDefaultApplicationService. importPage(File pageZip)Methods in org.bonitasoft.web.client.services.impl that return types with arguments of type Page Modifier and Type Method Description List<Page>DefaultApplicationService. searchPages(int page, int count)List<Page>DefaultApplicationService. searchPages(PageApi.SearchPagesQueryParams params)
-