Package org.bonitasoft.web.client.api
Interface I18nlocaleApi
-
- All Superinterfaces:
ApiClient.Api
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public interface I18nlocaleApi extends ApiClient.Api
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classI18nlocaleApi.SearchI18nlocalesQueryParamsA convenience class for generating query parameters for thesearchI18nlocalesmethod in a fluent style.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<I18nlocale>searchI18nlocales(Integer p, Integer c)Finds I18nlocales List the available I18nlocales with pagination params and filtersList<I18nlocale>searchI18nlocales(Map<String,Object> queryParams)Finds I18nlocales List the available I18nlocales with pagination params and filters Note, this is equivalent to the othersearchI18nlocalesmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<I18nlocale>>searchI18nlocalesWithHttpInfo(Integer p, Integer c)Finds I18nlocales Similar tosearchI18nlocalesbut it also returns the http response headers .ApiResponse<List<I18nlocale>>searchI18nlocalesWithHttpInfo(Map<String,Object> queryParams)Finds I18nlocales List the available I18nlocales with pagination params and filters Note, this is equivalent to the othersearchI18nlocalesthat receives the query parameters as a map, but this one also exposes the Http response headers
-
-
-
Method Detail
-
searchI18nlocales
List<I18nlocale> searchI18nlocales(Integer p, Integer c)
Finds I18nlocales List the available I18nlocales with pagination params and filters- Parameters:
p- index of the page to display (required)c- maximum number of elements to retrieve (required)- Returns:
- List<I18nlocale>
-
searchI18nlocalesWithHttpInfo
ApiResponse<List<I18nlocale>> searchI18nlocalesWithHttpInfo(Integer p, Integer c)
Finds I18nlocales Similar tosearchI18nlocalesbut it also returns the http response headers . List the available I18nlocales with pagination params and filters- Parameters:
p- index of the page to display (required)c- maximum number of elements to retrieve (required)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
searchI18nlocales
List<I18nlocale> searchI18nlocales(Map<String,Object> queryParams)
Finds I18nlocales List the available I18nlocales with pagination params and filters Note, this is equivalent to the othersearchI18nlocalesmethod, but with the query parameters collected into a single Map parameter. This is convenient for services with optional query parameters, especially when used with theI18nlocaleApi.SearchI18nlocalesQueryParamsclass that allows for building up this map in a fluent style.- Parameters:
queryParams- Map of query parameters as name-value pairsThe following elements may be specified in the query map:
- p - index of the page to display (required)
- c - maximum number of elements to retrieve (required)
- Returns:
- List<I18nlocale>
-
searchI18nlocalesWithHttpInfo
ApiResponse<List<I18nlocale>> searchI18nlocalesWithHttpInfo(Map<String,Object> queryParams)
Finds I18nlocales List the available I18nlocales with pagination params and filters Note, this is equivalent to the othersearchI18nlocalesthat receives the query parameters as a map, but this one also exposes the Http response headers- Parameters:
queryParams- Map of query parameters as name-value pairsThe following elements may be specified in the query map:
- p - index of the page to display (required)
- c - maximum number of elements to retrieve (required)
- Returns:
- List<I18nlocale>
-
-