Package-level declarations

Types

Link copied to clipboard
open class APIRequest
The APIRequest class is useful to send and manage any "API" requests and their responses
Link copied to clipboard
open class ConsolePainter
The ConsolePainter class is useful to print out any text in the console in different styles with "ANSI" escape characters
Link copied to clipboard
open class QRCodeHelper
The QRCodeHelper class is useful to manage the QRCode
Link copied to clipboard
open class ResourcesUtils<T : Class?>
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");

Link copied to clipboard
open class ServerProtector
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