class UserService
Constructs the service.
credentials
- to work with the server
transport
- to know the method to reach the server
UserService(url: URL, credentials: Credentials?, transport: Transport)
Constructs the service. |
fun changePassword(info: UserChangePasswordInfo, username: String): Unit |
|
fun create(userRegistrationInfo: UserRegistrationInfo): String?
Creates an user. |
|
operator fun get(id: String): UserInfo
Returns an user. |
|
fun list(firstResult: Int?, maxResults: Int?, like: String?): Collection<UserShortInfo>
Returns list of users. |
|
fun listMinified(firstResult: Int?, maxResults: Int?, like: String?): Collection<UserShortInfo>
Returns list of users. |
|
fun put(id: String, userInfo: UserInfo): Unit
Modifies an user. |