Package org.bonitasoft.web.client.api
Interface ProfileEntryApi
-
- All Superinterfaces:
ApiClient.Api
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public interface ProfileEntryApi extends ApiClient.Api
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classProfileEntryApi.SearchProfileEntriesQueryParamsA convenience class for generating query parameters for thesearchProfileEntriesmethod in a fluent style.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProfileEntrycreateProfileEntry(ProfileEntryCreateRequest body)Create the ProfileEntry Create the ProfileEntryApiResponse<ProfileEntry>createProfileEntryWithHttpInfo(ProfileEntryCreateRequest body)Create the ProfileEntry Similar tocreateProfileEntrybut it also returns the http response headers .voiddeleteProfileEntryById(String id)Delete the ProfileEntry by ID Delete the single ProfileEntry for the given IDApiResponse<Void>deleteProfileEntryByIdWithHttpInfo(String id)Delete the ProfileEntry by ID Similar todeleteProfileEntryByIdbut it also returns the http response headers .ProfileEntrygetProfileEntryById(String id)Finds the ProfileEntry by ID Returns the single ProfileEntry for the given IDApiResponse<ProfileEntry>getProfileEntryByIdWithHttpInfo(String id)Finds the ProfileEntry by ID Similar togetProfileEntryByIdbut it also returns the http response headers .List<ProfileEntry>searchProfileEntries(Integer p, Integer c, List<String> f, String s)Finds ProfileEntries Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id`List<ProfileEntry>searchProfileEntries(Map<String,Object> queryParams)Finds ProfileEntries Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id` Note, this is equivalent to the othersearchProfileEntriesmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<ProfileEntry>>searchProfileEntriesWithHttpInfo(Integer p, Integer c, List<String> f, String s)Finds ProfileEntries Similar tosearchProfileEntriesbut it also returns the http response headers .ApiResponse<List<ProfileEntry>>searchProfileEntriesWithHttpInfo(Map<String,Object> queryParams)Finds ProfileEntries Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id` Note, this is equivalent to the othersearchProfileEntriesthat receives the query parameters as a map, but this one also exposes the Http response headersvoidupdateProfileEntryById(String id, ProfileEntryUpdateRequest profileEntryUpdateRequest)Update the ProfileEntry by ID Update the ProfileEntry for the given IDApiResponse<Void>updateProfileEntryByIdWithHttpInfo(String id, ProfileEntryUpdateRequest profileEntryUpdateRequest)Update the ProfileEntry by ID Similar toupdateProfileEntryByIdbut it also returns the http response headers .
-
-
-
Method Detail
-
createProfileEntry
ProfileEntry createProfileEntry(ProfileEntryCreateRequest body)
Create the ProfileEntry Create the ProfileEntry- Parameters:
body- Partial ProfileEntry description (required)- Returns:
- ProfileEntry
-
createProfileEntryWithHttpInfo
ApiResponse<ProfileEntry> createProfileEntryWithHttpInfo(ProfileEntryCreateRequest body)
Create the ProfileEntry Similar tocreateProfileEntrybut it also returns the http response headers . Create the ProfileEntry- Parameters:
body- Partial ProfileEntry description (required)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
deleteProfileEntryById
void deleteProfileEntryById(String id)
Delete the ProfileEntry by ID Delete the single ProfileEntry for the given ID- Parameters:
id- ID of the ProfileEntry to delete (required)
-
deleteProfileEntryByIdWithHttpInfo
ApiResponse<Void> deleteProfileEntryByIdWithHttpInfo(String id)
Delete the ProfileEntry by ID Similar todeleteProfileEntryByIdbut it also returns the http response headers . Delete the single ProfileEntry for the given ID- Parameters:
id- ID of the ProfileEntry to delete (required)
-
getProfileEntryById
ProfileEntry getProfileEntryById(String id)
Finds the ProfileEntry by ID Returns the single ProfileEntry for the given ID- Parameters:
id- ID of the ProfileEntry to return (required)- Returns:
- ProfileEntry
-
getProfileEntryByIdWithHttpInfo
ApiResponse<ProfileEntry> getProfileEntryByIdWithHttpInfo(String id)
Finds the ProfileEntry by ID Similar togetProfileEntryByIdbut it also returns the http response headers . Returns the single ProfileEntry for the given ID- Parameters:
id- ID of the ProfileEntry to return (required)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
searchProfileEntries
List<ProfileEntry> searchProfileEntries(Integer p, Integer c, List<String> f, String s)
Finds ProfileEntries Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id`- Parameters:
p- index of the page to display (required)c- maximum number of elements to retrieve (required)f- can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)s- can search on attributes (optional)- Returns:
- List<ProfileEntry>
-
searchProfileEntriesWithHttpInfo
ApiResponse<List<ProfileEntry>> searchProfileEntriesWithHttpInfo(Integer p, Integer c, List<String> f, String s)
Finds ProfileEntries Similar tosearchProfileEntriesbut it also returns the http response headers . Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id`- Parameters:
p- index of the page to display (required)c- maximum number of elements to retrieve (required)f- can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)s- can search on attributes (optional)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
searchProfileEntries
List<ProfileEntry> searchProfileEntries(Map<String,Object> queryParams)
Finds ProfileEntries Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id` Note, this is equivalent to the othersearchProfileEntriesmethod, but with the query parameters collected into a single Map parameter. This is convenient for services with optional query parameters, especially when used with theProfileEntryApi.SearchProfileEntriesQueryParamsclass 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)
- f - can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)
- s - can search on attributes (optional)
- Returns:
- List<ProfileEntry>
-
searchProfileEntriesWithHttpInfo
ApiResponse<List<ProfileEntry>> searchProfileEntriesWithHttpInfo(Map<String,Object> queryParams)
Finds ProfileEntries Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id` Note, this is equivalent to the othersearchProfileEntriesthat 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)
- f - can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)
- s - can search on attributes (optional)
- Returns:
- List<ProfileEntry>
-
updateProfileEntryById
void updateProfileEntryById(String id, ProfileEntryUpdateRequest profileEntryUpdateRequest)
Update the ProfileEntry by ID Update the ProfileEntry for the given ID- Parameters:
id- ID of the ProfileEntry to return (required)profileEntryUpdateRequest- Partial ProfileEntry description (required)
-
updateProfileEntryByIdWithHttpInfo
ApiResponse<Void> updateProfileEntryByIdWithHttpInfo(String id, ProfileEntryUpdateRequest profileEntryUpdateRequest)
Update the ProfileEntry by ID Similar toupdateProfileEntryByIdbut it also returns the http response headers . Update the ProfileEntry for the given ID- Parameters:
id- ID of the ProfileEntry to return (required)profileEntryUpdateRequest- Partial ProfileEntry description (required)
-
-