- DatabaseActions - Class in dbpack
-
Singleton class that contains the necessary actions for connecting and disconnecting to the db,
creating and deleting tables, inserting, updating and removing data from the database, and also
creates and manages the middle memory.
- DatabaseActions() - Constructor for class dbpack.DatabaseActions
-
Private constructor for the singleton class that makes the connection to the db
and then checks and prints the version of mysql, deletes previously created tables
and creates the necessary tables in the database.
- db - Static variable in class main.Main
-
DatabaseActions singleton object that makes all the necessary actions between the service and the database,
contains the middle memory for updating the gui and the database and runs the thread that checks periodically
if any of the devices doesn't send data anymore.
- dbpack - package dbpack
-
- default_gateway - Variable in class context.InterfaceData
-
- deleteAccessPoint(String, String) - Method in class dbpack.DatabaseActions
-
Deletes the access point for the device from the database
- deleteDevice(String) - Method in class dbpack.DatabaseActions
-
Deletes all the collected data of the device from the database and the middle memory.
- deleteInterface(String, String) - Method in class dbpack.DatabaseActions
-
Deletes from the database the requested interface for the device.
- deleteTables() - Method in class dbpack.DatabaseActions
-
- deleteWireless(String, String) - Method in class dbpack.DatabaseActions
-
Deletes from the database the requested wireless interface for the device.
- devapTable - Variable in class dbpack.DatabaseActions
-
Map that stores the signal level from all devices' discovered access points.
- deviceTable - Variable in class guipack.UserInterface
-
Map that store the buttons of the representing devices.
- devtimesTable - Variable in class dbpack.DatabaseActions
-
Map that stores the latest update times from all devices.
- discarded_packets - Variable in class context.WirelessData
-
- discIfTable - Variable in class dbpack.DatabaseActions
-
Map that stores the necessary data from all devices' disconnected interfaces.
- discWifTable - Variable in class dbpack.DatabaseActions
-
Map that stores the necessary data from all devices' disconnected wireless interfaces.