getUser

abstract fun getUser(uuid: UUID): User?

Gets the user with the given uuid, or returns null if there is no user with the given uuid, or this user is not loaded.

Return

the user with the UUID, or null if not present

Parameters

uuid

the UUID of the user


abstract fun getUser(name: String): User?

Gets the user with the given name, or returns null if there is no user with the given name, or this user is not loaded.

Return

the user with the UUID, or null if not present

Parameters

name

the last known name of the user