Uses of Class
org.noise_planet.noisemodelling.webserver.secure.User
Packages that use User
Package
Description
-
Uses of User in org.noise_planet.noisemodelling.webserver
Fields in org.noise_planet.noisemodelling.webserver with type parameters of type UserMethods in org.noise_planet.noisemodelling.webserver with parameters of type UserModifier and TypeMethodDescriptionUserController.getDatabaseFile(User user) Retrieves the database file associated with the specified user.Constructor parameters in org.noise_planet.noisemodelling.webserver with type arguments of type UserModifierConstructorDescriptionOwsController(DataSource serverDataSource, JWTProvider<User> provider, Configuration configuration) Constructs an instance of the OwsController class.UserController(DataSource serverDataSource, JWTProvider<User> provider, Configuration configuration) -
Uses of User in org.noise_planet.noisemodelling.webserver.database
Methods in org.noise_planet.noisemodelling.webserver.database that return UserModifier and TypeMethodDescriptionstatic UserDatabaseManagement.getUser(Connection connection, int userIdentifier) Get user from databasestatic UserDatabaseManagement.getUser(Connection connection, ResultSet rsUser) static UserDatabaseManagement.getUser(DataSource serverDataSource, int userIdentifier) Get user from databaseMethods in org.noise_planet.noisemodelling.webserver.database that return types with arguments of type UserMethods in org.noise_planet.noisemodelling.webserver.database with parameters of type UserModifier and TypeMethodDescriptionstatic voidDatabaseManagement.updateUserAttributes(Connection connection, User user) Updates the user attributes (email, totp token) in the database. -
Uses of User in org.noise_planet.noisemodelling.webserver.secure
Methods in org.noise_planet.noisemodelling.webserver.secure that return UserModifier and TypeMethodDescriptionstatic UserAuth.getUserFromContext(io.javalin.http.Context ctx, DataSource serverDataSource, JWTProvider<User> provider) Methods in org.noise_planet.noisemodelling.webserver.secure that return types with arguments of type UserModifier and TypeMethodDescriptionstatic JWTProvider<User> JWTProviderFactory.createHMAC512(String serverSecretToken) Create the instance of the generator of Json Web TokenMethod parameters in org.noise_planet.noisemodelling.webserver.secure with type arguments of type UserModifier and TypeMethodDescriptionstatic UserAuth.getUserFromContext(io.javalin.http.Context ctx, DataSource serverDataSource, JWTProvider<User> provider) static intJavalinJWT.getUserIdentifierFromContext(io.javalin.http.Context ctx, JWTProvider<User> provider) Return the user identifier from the web context (extracted from verified Json Web Token)Constructor parameters in org.noise_planet.noisemodelling.webserver.secure with type arguments of type UserModifierConstructorDescriptionAuth(JWTProvider<User> provider, DataSource serverDataSource, Configuration configuration)