Uses of Class
org.bonitasoft.web.client.model.User
-
Packages that use User 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 User in org.bonitasoft.web.client.api
Methods in org.bonitasoft.web.client.api that return User Modifier and Type Method Description UserUserApi. createUser(UserCreateRequest body)Create the User Create the UserUserUserApi. getUserById(String id)Finds the User by ID Returns the single User for the given IDMethods in org.bonitasoft.web.client.api that return types with arguments of type User Modifier and Type Method Description ApiResponse<User>UserApi. createUserWithHttpInfo(UserCreateRequest body)Create the User Similar tocreateUserbut it also returns the http response headers .ApiResponse<User>UserApi. getUserByIdWithHttpInfo(String id)Finds the User by ID Similar togetUserByIdbut it also returns the http response headers .List<User>UserApi. searchUsers(Integer p, Integer c, List<String> f, String o, String s)Finds Users Finds Users with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName`List<User>UserApi. searchUsers(Map<String,Object> queryParams)Finds Users Finds Users with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName` Note, this is equivalent to the othersearchUsersmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<User>>UserApi. searchUsersWithHttpInfo(Integer p, Integer c, List<String> f, String o, String s)Finds Users Similar tosearchUsersbut it also returns the http response headers .ApiResponse<List<User>>UserApi. searchUsersWithHttpInfo(Map<String,Object> queryParams)Finds Users Finds Users with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName` Note, this is equivalent to the othersearchUsersthat receives the query parameters as a map, but this one also exposes the Http response headers -
Uses of User in org.bonitasoft.web.client.model
Methods in org.bonitasoft.web.client.model that return User Modifier and Type Method Description UserUser. createdByUserId(String createdByUserId)UserUser. creationDate(String creationDate)UserUser. enabled(String enabled)UserUser. firstname(String firstname)UserUser. icon(String icon)UserUser. id(String id)UserUser. jobTitle(String jobTitle)UserUser. lastConnection(String lastConnection)UserUser. lastname(String lastname)UserUser. lastUpdateDate(String lastUpdateDate)UserUser. managerId(String managerId)UserUser. password(String password)UserUser. title(String title)UserUser. userName(String userName) -
Uses of User in org.bonitasoft.web.client.services
Methods in org.bonitasoft.web.client.services that return User Modifier and Type Method Description UserUserService. createUser(UserCreateRequest userCreateRequest)UserUserService. getUser(String username)Methods in org.bonitasoft.web.client.services that return types with arguments of type User Modifier and Type Method Description List<User>UserService. searchUsers(UserApi.SearchUsersQueryParams params) -
Uses of User in org.bonitasoft.web.client.services.impl
Methods in org.bonitasoft.web.client.services.impl that return User Modifier and Type Method Description UserDefaultUserService. createUser(UserCreateRequest userCreateRequest)UserDefaultUserService. getUser(String username)Methods in org.bonitasoft.web.client.services.impl that return types with arguments of type User Modifier and Type Method Description List<User>DefaultUserService. searchUsers(UserApi.SearchUsersQueryParams params)
-