Uses of Class
org.bonitasoft.web.client.model.Profile
-
Packages that use Profile 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 Profile in org.bonitasoft.web.client.api
Methods in org.bonitasoft.web.client.api that return Profile Modifier and Type Method Description ProfileProfileApi. createProfile(ProfileCreateRequest body)Create the Profile Create the ProfileProfileProfileApi. getProfileById(String id)Finds the Profile by ID Returns the single Profile for the given IDMethods in org.bonitasoft.web.client.api that return types with arguments of type Profile Modifier and Type Method Description ApiResponse<Profile>ProfileApi. createProfileWithHttpInfo(ProfileCreateRequest body)Create the Profile Similar tocreateProfilebut it also returns the http response headers .ApiResponse<Profile>ProfileApi. getProfileByIdWithHttpInfo(String id)Finds the Profile by ID Similar togetProfileByIdbut it also returns the http response headers .List<Profile>ProfileApi. searchProfiles(Integer p, Integer c, List<String> f, String s, String o)Finds Profiles Finds Profiles with pagination params and filters - can search on `name` - can filter on `name`,`hasNavigation` - can order on `name`List<Profile>ProfileApi. searchProfiles(Map<String,Object> queryParams)Finds Profiles Finds Profiles with pagination params and filters - can search on `name` - can filter on `name`,`hasNavigation` - can order on `name` Note, this is equivalent to the othersearchProfilesmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<Profile>>ProfileApi. searchProfilesWithHttpInfo(Integer p, Integer c, List<String> f, String s, String o)Finds Profiles Similar tosearchProfilesbut it also returns the http response headers .ApiResponse<List<Profile>>ProfileApi. searchProfilesWithHttpInfo(Map<String,Object> queryParams)Finds Profiles Finds Profiles with pagination params and filters - can search on `name` - can filter on `name`,`hasNavigation` - can order on `name` Note, this is equivalent to the othersearchProfilesthat receives the query parameters as a map, but this one also exposes the Http response headers -
Uses of Profile in org.bonitasoft.web.client.model
Methods in org.bonitasoft.web.client.model that return Profile Modifier and Type Method Description ProfileProfile. createdBy(String createdBy)ProfileProfile. creationDate(String creationDate)ProfileProfile. description(String description)ProfileProfile. icon(String icon)ProfileProfile. id(String id)ProfileProfile. isdefault(Boolean isdefault)ProfileProfile. lastUpdateDate(String lastUpdateDate)ProfileProfile. name(String name)ProfileProfile. updatedBy(String updatedBy) -
Uses of Profile in org.bonitasoft.web.client.services
Methods in org.bonitasoft.web.client.services that return Profile Modifier and Type Method Description ProfileUserService. createProfile(ProfileCreateRequest profileCreateRequest)ProfileUserService. getProfileByName(String name)Methods in org.bonitasoft.web.client.services that return types with arguments of type Profile Modifier and Type Method Description List<Profile>UserService. searchProfiles(int page, int count)List<Profile>UserService. searchProfiles(ProfileApi.SearchProfilesQueryParams params) -
Uses of Profile in org.bonitasoft.web.client.services.impl
Methods in org.bonitasoft.web.client.services.impl that return Profile Modifier and Type Method Description ProfileDefaultUserService. createProfile(ProfileCreateRequest profileCreateRequest)ProfileDefaultUserService. getProfileByName(String name)Methods in org.bonitasoft.web.client.services.impl that return types with arguments of type Profile Modifier and Type Method Description List<Profile>DefaultUserService. searchProfiles(int page, int count)List<Profile>DefaultUserService. searchProfiles(ProfileApi.SearchProfilesQueryParams params)
-