Uses of Class
org.apache.iotdb.commons.auth.entity.User
-
Packages that use User Package Description org.apache.iotdb.commons.auth.authorizer org.apache.iotdb.commons.auth.user -
-
Uses of User in org.apache.iotdb.commons.auth.authorizer
Methods in org.apache.iotdb.commons.auth.authorizer that return User Modifier and Type Method Description UserBasicAuthorizer. getUser(java.lang.String username)UserIAuthorizer. getUser(java.lang.String username)Find a user by its name.Methods in org.apache.iotdb.commons.auth.authorizer that return types with arguments of type User Modifier and Type Method Description java.util.Map<java.lang.String,User>BasicAuthorizer. getAllUsers()java.util.Map<java.lang.String,User>IAuthorizer. getAllUsers()get all userMethod parameters in org.apache.iotdb.commons.auth.authorizer with type arguments of type User Modifier and Type Method Description voidBasicAuthorizer. replaceAllUsers(java.util.Map<java.lang.String,User> users)voidIAuthorizer. replaceAllUsers(java.util.Map<java.lang.String,User> users)clear all old user info, replace the old users with the new one -
Uses of User in org.apache.iotdb.commons.auth.user
Fields in org.apache.iotdb.commons.auth.user with type parameters of type User Modifier and Type Field Description protected java.util.Map<java.lang.String,User>BasicUserManager. userMapMethods in org.apache.iotdb.commons.auth.user that return User Modifier and Type Method Description UserBasicUserManager. getUser(java.lang.String username)UserIUserManager. getUser(java.lang.String username)Get a user object.UserIUserAccessor. loadUser(java.lang.String username)Deserialize a user from lower storage.UserLocalFileUserAccessor. loadUser(java.lang.String username)Deserialize a user from its user file.Methods in org.apache.iotdb.commons.auth.user with parameters of type User Modifier and Type Method Description voidIUserAccessor. saveUser(User user)Serialize the user object to lower storage.voidLocalFileUserAccessor. saveUser(User user)Serialize the user object to a temp file, then replace the old user file with the new file.Method parameters in org.apache.iotdb.commons.auth.user with type arguments of type User Modifier and Type Method Description voidBasicUserManager. replaceAllUsers(java.util.Map<java.lang.String,User> users)voidIUserManager. replaceAllUsers(java.util.Map<java.lang.String,User> users)clear all old users info, replace the old users with the new one.
-