Package-level declarations
Types
Link copied to clipboard
The
APIRequest
class is useful to send and manage any "API"
requests and their responsesLink copied to clipboard
The
ConsolePainter
class is useful to print out any text in the console in different styles with "ANSI"
escape charactersLink copied to clipboard
The
QRCodeHelper
class is useful to manage the QRCodeLink copied to clipboard
The
ResourcesUtils
class is useful to manage the resources folder to get its resources, both with methods working in the JAR scope and both with method working a runtime outside a JAR
// Invoking a ResourcesUtils method one time
String resourceContent = ResourcesUtils.getResourceContent("my_path_name.resource", MyCallingClass.class);
// Invoking a ResourcesUtils methods multiple time is more efficient instantiating a dedicated object
ResourcesUtils<Class<MyCallingClass>> resourcesUtils = new ResourcesUtils<>(MyCallingClass.class);
String firstResourceContent = resourcesUtils.getResourceContent("my_first_path_name.resource");
String secondResourceContent = resourcesUtils.getResourceContent("my_second_path_name.resource");
Content copied to clipboard
Link copied to clipboard
The
ServerProtector
class is useful to protect the server from the unauthorized accesses This class will generate a secret to share with the users allowed to use this server