Uses of Class
com.biglybt.ui.console.UserProfile
-
Packages that use UserProfile Package Description com.biglybt.ui.console com.biglybt.ui.console.multiuser com.biglybt.ui.telnet -
-
Uses of UserProfile in com.biglybt.ui.console
Fields in com.biglybt.ui.console declared as UserProfile Modifier and Type Field Description static UserProfile
UserProfile. DEFAULT_USER_PROFILE
private UserProfile
ConsoleInput. userProfile
Methods in com.biglybt.ui.console that return UserProfile Modifier and Type Method Description UserProfile
ConsoleInput. getUserProfile()
Constructors in com.biglybt.ui.console with parameters of type UserProfile Constructor Description ConsoleInput(java.lang.String con, Core _core, java.io.Reader _in, java.io.PrintStream _out, java.lang.Boolean _controlling, UserProfile profile)
-
Uses of UserProfile in com.biglybt.ui.console.multiuser
Methods in com.biglybt.ui.console.multiuser that return UserProfile Modifier and Type Method Description UserProfile
UserManager. authenticate(java.lang.String username, java.lang.String password)
attempts to locate a user with the specified username and then verifies that the specified password is the same as the password associated with that userUserProfile
UserManager. getUser(java.lang.String username)
returns the profile for the user with the specified username otherwise null if there is no such userMethods in com.biglybt.ui.console.multiuser with parameters of type UserProfile Modifier and Type Method Description void
UserManager. addUser(UserProfile user)
adds another user to the users listvoid
UserManager.UserManagerConfig. addUser(UserProfile user)
adds another user to the users listConstructors in com.biglybt.ui.console.multiuser with parameters of type UserProfile Constructor Description MultiUserConsoleInput(java.lang.String con, Core core, java.io.Reader _in, java.io.PrintStream _out, java.lang.Boolean _controlling, UserProfile profile)
set up the lists of commands that we prohibit, based upon the user type. -
Uses of UserProfile in com.biglybt.ui.telnet
Methods in com.biglybt.ui.telnet that return UserProfile Modifier and Type Method Description private UserProfile
SocketServer. login(java.io.InputStream in, java.io.OutputStream out)
if usermanager is null (ie: multi user is not enabled), returns the default user profile otherwise, requests username and password and authenticates user before returning the user profile for this userMethods in com.biglybt.ui.telnet with parameters of type UserProfile Modifier and Type Method Description void
UI. createNewConsoleInput(java.lang.String consoleName, java.io.InputStream inputStream, java.io.PrintStream outputStream, UserProfile profile)
creates a new console input using the specified input/output streams.
-