Uses of Class
io.github.sigmacasino.HTTPRoute
Packages that use HTTPRoute
Package
Description
Root package of the application.
Classes that define the main routes of the casino.
Classes that handle account-related routes.
Classes for routes documenting the project.
Classes that handle games the casino offers.
-
Uses of HTTPRoute in io.github.sigmacasino
Subclasses of HTTPRoute in io.github.sigmacasinoModifier and TypeClassDescriptionclass
A route that handles GET requests.class
A GET route that renders a Jinjava HTML template.class
A route that handles POST requests.Fields in io.github.sigmacasino declared as HTTPRoute -
Uses of HTTPRoute in io.github.sigmacasino.routes
Subclasses of HTTPRoute in io.github.sigmacasino.routesModifier and TypeClassDescriptionclass
The Account class handles the account route, displaying the user's account information.class
The route for the docs main page.class
The route for the games page.class
Redirects the user to the main page.class
The Login class handles the GET request for displaying the login page.class
The LoginPost class handles the POST request for processing the login form submission.class
The Logout class handles the GET request for logging out the user.class
The Register class handles the GET request for displaying the registration page.class
The RegisterPost class handles the POST request for processing the registration form submission.class
The root route of the application (empty path).class
A route that listens for Stripe events. -
Uses of HTTPRoute in io.github.sigmacasino.routes.account
Subclasses of HTTPRoute in io.github.sigmacasino.routes.accountModifier and TypeClassDescriptionclass
The ResetPassword class handles the GET request for displaying the reset password page.class
The ResetPasswordPost class handles the POST request for resetting a user's password.class
A post route which initiates a Stripe payment session.class
A route that shows the result of a Stripe payment to the user.class
A post route which initiates a Stripe payout. -
Uses of HTTPRoute in io.github.sigmacasino.routes.docs
Subclasses of HTTPRoute in io.github.sigmacasino.routes.docsModifier and TypeClassDescriptionclass
The route for the ER diagrams page.class
The route for the interfaces documentation page.class
The route for the requirements page.class
The route for the risk analysis documentation page.class
The route for the project structure page.class
The route for the games page.class
The route for the tech stack documentation page.class
The route for the tests documentation page.class
The route for the UML diagrams page. -
Uses of HTTPRoute in io.github.sigmacasino.routes.games
Subclasses of HTTPRoute in io.github.sigmacasino.routes.gamesModifier and TypeClassDescriptionclass
Handles the "/games/horses" route, fetching horse race data based on a replay ID and populating the HTML template with the race details or an error flag.class
Handles the "/games/horses" POST request, managing user bets, updating the user's balance, and registering a new horse racing game.class
Handles the "/games/roulette" route, fetching roulette game data based on a replay ID and populating the HTML template with the game details or an error flag.class
Handles the "/games/roulette" POST request, processing user bets, updating the user's balance, and registering a new roulette game result.