Package org.bonitasoft.web.client.api
Interface CustomUserDefinitionApi
-
- All Superinterfaces:
ApiClient.Api
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public interface CustomUserDefinitionApi extends ApiClient.Api
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCustomUserDefinitionApi.SearchCustomUserDefinitionsQueryParamsA convenience class for generating query parameters for thesearchCustomUserDefinitionsmethod in a fluent style.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomUserDefinitioncreateCustomUserDefinition(CustomUserDefinitionCreateRequest body)Create the CustomUserDefinition Create the CustomUserDefinitionApiResponse<CustomUserDefinition>createCustomUserDefinitionWithHttpInfo(CustomUserDefinitionCreateRequest body)Create the CustomUserDefinition Similar tocreateCustomUserDefinitionbut it also returns the http response headers .voiddeleteCustomUserDefinitionById(String id)Delete the CustomUserDefinition by ID Delete the single CustomUserDefinition for the given IDApiResponse<Void>deleteCustomUserDefinitionByIdWithHttpInfo(String id)Delete the CustomUserDefinition by ID Similar todeleteCustomUserDefinitionByIdbut it also returns the http response headers .CustomUserDefinitiongetCustomUserDefinitionById(String id)Finds the CustomUserDefinition by ID Returns the single CustomUserDefinition for the given IDApiResponse<CustomUserDefinition>getCustomUserDefinitionByIdWithHttpInfo(String id)Finds the CustomUserDefinition by ID Similar togetCustomUserDefinitionByIdbut it also returns the http response headers .List<CustomUserDefinition>searchCustomUserDefinitions(Integer p, Integer c)Finds CustomUserDefinitions Finds CustomUserDefinitions.List<CustomUserDefinition>searchCustomUserDefinitions(Map<String,Object> queryParams)Finds CustomUserDefinitions Finds CustomUserDefinitions.ApiResponse<List<CustomUserDefinition>>searchCustomUserDefinitionsWithHttpInfo(Integer p, Integer c)Finds CustomUserDefinitions Similar tosearchCustomUserDefinitionsbut it also returns the http response headers .ApiResponse<List<CustomUserDefinition>>searchCustomUserDefinitionsWithHttpInfo(Map<String,Object> queryParams)Finds CustomUserDefinitions Finds CustomUserDefinitions.
-
-
-
Method Detail
-
createCustomUserDefinition
CustomUserDefinition createCustomUserDefinition(CustomUserDefinitionCreateRequest body)
Create the CustomUserDefinition Create the CustomUserDefinition- Parameters:
body- Partial CustomUserDefinition description (required)- Returns:
- CustomUserDefinition
-
createCustomUserDefinitionWithHttpInfo
ApiResponse<CustomUserDefinition> createCustomUserDefinitionWithHttpInfo(CustomUserDefinitionCreateRequest body)
Create the CustomUserDefinition Similar tocreateCustomUserDefinitionbut it also returns the http response headers . Create the CustomUserDefinition- Parameters:
body- Partial CustomUserDefinition description (required)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
deleteCustomUserDefinitionById
void deleteCustomUserDefinitionById(String id)
Delete the CustomUserDefinition by ID Delete the single CustomUserDefinition for the given ID- Parameters:
id- ID of the CustomUserDefinition to delete (required)
-
deleteCustomUserDefinitionByIdWithHttpInfo
ApiResponse<Void> deleteCustomUserDefinitionByIdWithHttpInfo(String id)
Delete the CustomUserDefinition by ID Similar todeleteCustomUserDefinitionByIdbut it also returns the http response headers . Delete the single CustomUserDefinition for the given ID- Parameters:
id- ID of the CustomUserDefinition to delete (required)
-
getCustomUserDefinitionById
CustomUserDefinition getCustomUserDefinitionById(String id)
Finds the CustomUserDefinition by ID Returns the single CustomUserDefinition for the given ID- Parameters:
id- ID of the CustomUserDefinition to return (required)- Returns:
- CustomUserDefinition
-
getCustomUserDefinitionByIdWithHttpInfo
ApiResponse<CustomUserDefinition> getCustomUserDefinitionByIdWithHttpInfo(String id)
Finds the CustomUserDefinition by ID Similar togetCustomUserDefinitionByIdbut it also returns the http response headers . Returns the single CustomUserDefinition for the given ID- Parameters:
id- ID of the CustomUserDefinition to return (required)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
searchCustomUserDefinitions
List<CustomUserDefinition> searchCustomUserDefinitions(Integer p, Integer c)
Finds CustomUserDefinitions Finds CustomUserDefinitions. There are no filters, and no search terms. All the definitions are returned.- Parameters:
p- index of the page to display (required)c- maximum number of elements to retrieve (required)- Returns:
- List<CustomUserDefinition>
-
searchCustomUserDefinitionsWithHttpInfo
ApiResponse<List<CustomUserDefinition>> searchCustomUserDefinitionsWithHttpInfo(Integer p, Integer c)
Finds CustomUserDefinitions Similar tosearchCustomUserDefinitionsbut it also returns the http response headers . Finds CustomUserDefinitions. There are no filters, and no search terms. All the definitions are returned.- 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.
-
searchCustomUserDefinitions
List<CustomUserDefinition> searchCustomUserDefinitions(Map<String,Object> queryParams)
Finds CustomUserDefinitions Finds CustomUserDefinitions. There are no filters, and no search terms. All the definitions are returned. Note, this is equivalent to the othersearchCustomUserDefinitionsmethod, but with the query parameters collected into a single Map parameter. This is convenient for services with optional query parameters, especially when used with theCustomUserDefinitionApi.SearchCustomUserDefinitionsQueryParamsclass 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<CustomUserDefinition>
-
searchCustomUserDefinitionsWithHttpInfo
ApiResponse<List<CustomUserDefinition>> searchCustomUserDefinitionsWithHttpInfo(Map<String,Object> queryParams)
Finds CustomUserDefinitions Finds CustomUserDefinitions. There are no filters, and no search terms. All the definitions are returned. Note, this is equivalent to the othersearchCustomUserDefinitionsthat 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<CustomUserDefinition>
-
-