Uses of Class
io.github.marcopaglio.booking.model.Client
Packages that use Client
Package
Description
Provides interfaces for facing the presenter for the booking application.
Contains implementations of the presenter for the booking application using the service layer.
Provides interfaces for facing database level of any entity.
Contains implementations for using the repository layer through MongoDB
for entities of the booking application.
Contains implementations for using the repository layer through PostegreSQL
for entities of the booking application.
Provides interfaces for facing the service layer of the booking application.
Contains transactional implementations of the service layer for the booking application.
Provides the interface of a view of the user interface for the booking application.
Contains implementations of the view for the booking application using Swing.
-
Uses of Client in io.github.marcopaglio.booking.presenter
Methods in io.github.marcopaglio.booking.presenter with parameters of type ClientModifier and TypeMethodDescriptionvoid
BookingPresenter.addReservation
(Client client, String date) Creates and inserts a new reservation in the repository and notifies the view(s) about the changes.void
BookingPresenter.deleteClient
(Client client) Removes an existing client and all his reservations from the repository and notifies the view(s) about the changes.void
BookingPresenter.renameClient
(Client client, String newFirstName, String newLastName) Modifies names of an existing client and notifies the view(s) about the changes. -
Uses of Client in io.github.marcopaglio.booking.presenter.served
Methods in io.github.marcopaglio.booking.presenter.served with parameters of type ClientModifier and TypeMethodDescriptionvoid
ServedBookingPresenter.addReservation
(Client client, String date) Validates and inserts a new reservation in the repository and notifies the view about the changes.void
ServedBookingPresenter.deleteClient
(Client client) Removes an existing client and all his reservations from the repository and notifies the view about the changes.void
ServedBookingPresenter.renameClient
(Client client, String newFirstName, String newLastName) Validates and modifies names of an existing client and notifies the view about the changes. -
Uses of Client in io.github.marcopaglio.booking.repository
Methods in io.github.marcopaglio.booking.repository that return ClientModifier and TypeMethodDescriptionInserts a new Client in the database or saves changes of an existing one.Methods in io.github.marcopaglio.booking.repository that return types with arguments of type ClientModifier and TypeMethodDescriptionClientRepository.findAll()
Retrieves all the clients from the database in a list.Retrieves the unique client with the specified identifier from the database, if it exists.ClientRepository.findByName
(String firstName, String lastName) Retrieves the unique client with the specified name and surname from the database, if it exists.Methods in io.github.marcopaglio.booking.repository with parameters of type Client -
Uses of Client in io.github.marcopaglio.booking.repository.mongo
Methods in io.github.marcopaglio.booking.repository.mongo that return ClientModifier and TypeMethodDescriptionInserts a new Client in the MongoDB database or saves changes of an existing one.Methods in io.github.marcopaglio.booking.repository.mongo that return types with arguments of type ClientModifier and TypeMethodDescriptionClientMongoRepository.findAll()
Retrieves all the clients from the MongoDB database in a list.Retrieves the unique client with the specified identifier from the MongoDB database, if it exists.ClientMongoRepository.findByName
(String firstName, String lastName) Retrieves the unique client with the specified name and surname from the MongoDB database, if it exists.Methods in io.github.marcopaglio.booking.repository.mongo with parameters of type ClientModifier and TypeMethodDescriptionvoid
Removes the unique specified client from the MongoDB database, if it exists, otherwise it does nothing.Inserts a new Client in the MongoDB database or saves changes of an existing one. -
Uses of Client in io.github.marcopaglio.booking.repository.postgres
Methods in io.github.marcopaglio.booking.repository.postgres that return ClientModifier and TypeMethodDescriptionInserts a new Client in the PostgreSQL database or saves changes of an existing one.Methods in io.github.marcopaglio.booking.repository.postgres that return types with arguments of type ClientModifier and TypeMethodDescriptionClientPostgresRepository.findAll()
Retrieves all the clients from the PostgreSQL database in a list.Retrieves the unique client with the specified identifier from the PostgreSQL database, if it exists.ClientPostgresRepository.findByName
(String firstName, String lastName) Retrieves the unique client with the specified name and surname from the PostgreSQL database, if it exists.Methods in io.github.marcopaglio.booking.repository.postgres with parameters of type ClientModifier and TypeMethodDescriptionvoid
Removes the unique specified client from the PostgreSQL database, if it exists, otherwise it does nothing.Inserts a new Client in the PostgreSQL database or saves changes of an existing one. -
Uses of Client in io.github.marcopaglio.booking.service
Methods in io.github.marcopaglio.booking.service that return ClientModifier and TypeMethodDescriptionBookingService.findClient
(UUID id) Retrieves the client with the specified id from the database.BookingService.findClientNamed
(String firstName, String lastName) Retrieves the client with specified name and surname from the database.BookingService.insertNewClient
(Client client) Adds a new client in the database.BookingService.renameClient
(UUID id, String newFirstName, String newLastName) Changes name and surname of the client with the specified id in the database.Methods in io.github.marcopaglio.booking.service that return types with arguments of type ClientModifier and TypeMethodDescriptionBookingService.findAllClients()
Retrieves all the clients saved in the database.Methods in io.github.marcopaglio.booking.service with parameters of type ClientModifier and TypeMethodDescriptionBookingService.insertNewClient
(Client client) Adds a new client in the database. -
Uses of Client in io.github.marcopaglio.booking.service.transactional
Methods in io.github.marcopaglio.booking.service.transactional that return ClientModifier and TypeMethodDescriptionTransactionalBookingService.findClient
(UUID id) Retrieves the client with the specified id from the database within a transaction.TransactionalBookingService.findClientNamed
(String firstName, String lastName) Retrieves the client with specified name and surname from the database within a transaction.TransactionalBookingService.insertNewClient
(Client client) Adds a new client in the database within a transaction.TransactionalBookingService.renameClient
(UUID id, String newFirstName, String newLastName) Changes name and surname of the client with the specified id in the database within a transaction.Methods in io.github.marcopaglio.booking.service.transactional that return types with arguments of type ClientModifier and TypeMethodDescriptionTransactionalBookingService.findAllClients()
Retrieves all the clients saved in the database within a transaction.Methods in io.github.marcopaglio.booking.service.transactional with parameters of type ClientModifier and TypeMethodDescriptionTransactionalBookingService.insertNewClient
(Client client) Adds a new client in the database within a transaction. -
Uses of Client in io.github.marcopaglio.booking.view
Methods in io.github.marcopaglio.booking.view with parameters of type ClientModifier and TypeMethodDescriptionvoid
BookingView.clientAdded
(Client client) Displays the client just inserted into the repository on the user interface.void
BookingView.clientRemoved
(Client client) Makes the just deleted client disappear from the user interface.void
BookingView.clientRenamed
(Client oldClient, Client renamedClient) Displays the changes of the client just renamed on the user interface.Method parameters in io.github.marcopaglio.booking.view with type arguments of type ClientModifier and TypeMethodDescriptionvoid
BookingView.showAllClients
(List<Client> clients) Displays the clients of the given list on the user interface. -
Uses of Client in io.github.marcopaglio.booking.view.swing
Methods in io.github.marcopaglio.booking.view.swing with parameters of type ClientModifier and TypeMethodDescriptionvoid
BookingSwingView.clientAdded
(Client client) Displays the client just inserted into the repository on the user interface through Swing.void
BookingSwingView.clientRemoved
(Client client) Makes the just deleted client disappear from the user interface through Swing.void
BookingSwingView.clientRenamed
(Client oldClient, Client renamedClient) Displays the changes of the client just renamed on the user interface through Swing.Method parameters in io.github.marcopaglio.booking.view.swing with type arguments of type ClientModifier and TypeMethodDescriptionvoid
BookingSwingView.showAllClients
(List<Client> clients) Displays the clients of the given list on the graphical user interface through Swing.