Uses of Class
com.iizix.server.db.BasicUserInfo
Packages that use BasicUserInfo Package Description com.iizix.server com.iizix.server.db com.iizix.server.user Uses of BasicUserInfo in com.iizix.server
Methods in com.iizix.server with parameters of type BasicUserInfo Modifier and Type Method Description java.lang.String
ServerShell. getEmailVerificationURL(BasicUserInfo bui, java.lang.String email, java.lang.String externalWebServerBaseURL)
Gets a verification URL for an email address.Uses of BasicUserInfo in com.iizix.server.db
Methods in com.iizix.server.db that return BasicUserInfo Modifier and Type Method Description static BasicUserInfo
BasicUserInfo. createNewUser(java.lang.String userName, java.lang.String hashPW, boolean changePW, java.lang.String email, java.lang.String langCode, boolean hasLoggedIn, java.util.Map<java.lang.String,java.lang.String> details, java.lang.String... groupNames)
Creates a new user and writes the information to the database.static BasicUserInfo
BasicUserInfo. createNewUser(java.sql.Connection conn, java.lang.String userName, java.lang.String hashPW, boolean changePW, java.lang.String email, java.lang.String langCode, boolean hasLoggedIn, java.util.Map<java.lang.String,java.lang.String> details, GroupInfo... groups)
Creates a new user and writes the information to the database.static BasicUserInfo
BasicUserInfo. newBasicUserInfo(java.sql.Connection conn, long id)
Constructs the UserInfo by loading the information from the database.static BasicUserInfo
BasicUserInfo. newBasicUserInfo(java.sql.Connection conn, java.lang.String userName, boolean lockForUpdate)
Constructs the UserInfo by loading the information from the database.static BasicUserInfo
BasicUserInfo. newBasicUserInfoFromEmail(java.sql.Connection conn, java.lang.String emailAddress)
Constructs the UserInfo by loading the information from the database.Uses of BasicUserInfo in com.iizix.server.user
Methods in com.iizix.server.user that return BasicUserInfo Modifier and Type Method Description BasicUserInfo
AuthenticatedUser. getBasicUserInfo()
Gets the basic user information that was last refreshed from the database.Methods in com.iizix.server.user with parameters of type BasicUserInfo Modifier and Type Method Description boolean
UserAuthentication. isOldPasswordMatching(BasicUserInfo bui, java.lang.String oldPassword, java.lang.String password)
Verifies that the old password matches before changing to a new one.