Skip to content

Simulation of a candy factory using network technologies

Notifications You must be signed in to change notification settings

Nemanja1105/Candy-Factory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Candy-Factory

Java project that simulates the simplified operation of a candy factory. The project includes various GUI applications (java fx) that allow interaction with users, order management, product management, and communication with customers and raw material distributors.

Customer Application:

Upon launching the application, users log in to the system by entering their username and password. There is also an option to register new users. Registration and login to the system are performed through the factory's RESTful endpoints. After registration approval by the operator, users can view all available products and create orders. Products are obtained from a REST service. When creating an order, users select desired products, and the order is sent to the factory's message queue (MQ) in XML format. The order must be valid to be processed at the factory. Factory User Management Application:

Allows the display of all client accounts in a tabular form, with options for approving, rejecting, deleting, and blocking accounts. User accounts are stored in the "users.json" file on the server. Factory Operations Application:

Enables CRUD operations on products, which are stored in a Redis database. Provides the ability to automatically add test data when the application is launched. Users can write promotional text that is multicast to all clients. Order Viewing Application:

Operators log in by entering their name. Login is performed using Secure Socket. After logging in, operators can retrieve and process orders, which are retrieved based on the client's submission time from the MQ. After reviewing, operators can approve or reject an order. Clients automatically receive an email with information about the order status. The order status information is stored in a text format on the factory server. Raw Material Ordering Application:

Distributors are connected to the factory via RMI. Distributors have their own applications where they enter company information and generate products. Factory workers can view a list of all clients and the products of a selected client, and they can select desired products and enter the quantity for ordering. Communication with distributors is performed via RMI. image image image image image image image