diff --git a/CLASSDESCRIPTION.md b/CLASSDESCRIPTION.md
deleted file mode 100644
index 817d27a..0000000
--- a/CLASSDESCRIPTION.md
+++ /dev/null
@@ -1,44 +0,0 @@
-# OSInfo
-The OSInfo namespace includes many classes that return information about the current OS installation. This includes the following:
-- Architecture (String and Int representation)
-- Name (If OS is Windows, MacOSX, Linux or Solaris)
-
-# OSInfo.Windows
-The OSInfo.Windows namespace includes many classes that return information about the current Windows installation. This includes the following:
-- Edition (String representation)
-- Name (String, ExpandedString and Enum representation) Also contains methods that will return the current and pending Computer Name.
-- Product Key (String representation)
-- Service Pack (String and Int representation)
-- User Info (Contains Registered Organization, Registered Owner, Logged In Username, and Current Domain Name)
-- Version (String and Int representation) Includes Main, Major, Minor, Build, Revision and Number (number is Major * 10 + Minor).
-
-# HWInfo
-The HWInfo namespace includes many classes that return information about the current computer hardware. This includes the following:
-- BIOS (Release Date, Version and Vendor Name)
-- Network (Internal IP Address, External IP Address and Connection Status)
-- OEM (Vendor Name and Product Name)
-- Processor (Name and Number Of Cores)
-- RAM (Total Installed Ram Size)
-- Storage (System Drive Total Size, System Drive Free Space)
-
-# SecurityTools
-The SecurityTools class contains methods surrounding hashing and encryption. This includes the following:
-- createSecureRandom() - Secure Random Number Generator
-- getFileHash(HashType type, String fileName) - Generates a file hash of the supplied filename via the selected hash type (MD5, SHA1, SHA256, SHA384 and SHA512)
-- saveToFile(String hash, String fileName) - Saves a hash to a text file.
-- saveToFile(Key key, String fileName) - Saves a RSA key to a text file.
-- readFromFile(String fileName) - Reads a hash or RSA key from a text file.
-- CreateSalt(int size) - Creates a RNG salt for use in password hashing using the supplied length.
-- CreateHash(String passwordToHash, String salt) - Creates a SHA512 password hash with the supplied password and salt.
-- CheckHashesMatch(String enteredPassword, String databasePassword, String databaseSalt) - Checks if the supplied password matches the supplied database password and salt. This can be used to verify passwords for a login system.
-- generateRSAKeyPair() - Generates a RSA key pair for use in encryption.
-- generateKeyPair(boolean saveToFiles, String filename) - Generates a RSA key pair for use in encryption and saves to file.
-- encrypt(PublicKey key, String plaintext) - Encrypts a string using a RSA public key. Returns byte array.
-- decrypt(PrivateKey key, byte[] ciphertext) - Decrypts a string using a RSA private key. Returns byte array.
-- encryptToString(PublicKey key, String plaintext) - Encrypts a string using a RSA public key. Returns string.
-- decryptFromString(PrivateKey key, String ciphertext) - Decrypts a string using a RSA private key. Returns string.
-- saveKeyPairToFile(KeyPair pair, String filename) - Saves RSA key pair to text file.
-- readPublicKeyFromBytes(byte[] bytes) - Reads RSA public key from bytes.
-- readPrivateKeyFromBytes(byte[] bytes) - Reads RSA public key from bytes.
-- readPublicKeyFromFile(String fileName) - Reads RSA public key from text file.
-- readPrivateKeyFromFile(String fileName) - Reads RSA private key from text file.
diff --git a/Changelog.txt b/Changelog.txt
index 73a58a5..03ce5f4 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -1,3 +1,10 @@
+Version 1.5.1 changes (10/13/2018):
+* Added new userHasPermissions method overload to AuthManager
+* Added new userHasPermissions method overload to Subject
+* Fixed bugs and missing methods in Subject
+* Fixed deprecated methods in NativeMethods
+* Fixed other small bugs
+
Version 1.5.0 changes (10/07/2018):
* Updated JDK to Java 10
* Login Dialogs now don't require the use of Platform.runLater()
@@ -14,10 +21,10 @@ Version 1.5.0 changes (10/07/2018):
* All password hashing now uses BCrypt replacing SHA-512
* Other minor fixes
-Version 1.4.2 changes (1/23/2018):
+Version 1.4.2 changes (01/23/2018):
* Fixed fatal error with isUserLoggedIn method
-Version 1.4.1 changes (1/22/2018):
+Version 1.4.1 changes (01/22/2018):
* Added UserManagerException
* Added PasswordHashingFailedException
* Added isAdminLoggedIn method
@@ -29,7 +36,7 @@ Version 1.4.1 changes (1/22/2018):
* Limited number of SQLException and GeneralSecurityException checked exceptions
* Changed Session Manager dialogs to use instance vars for parameters(old methods deprecated)
-Version 1.4.0 changes (1/19/2018):
+Version 1.4.0 changes (01/19/2018):
* Added User Management Classes (UserManager, UserAccount, UserRoleManager and UserRole)
* Added Permission Management Classes (Permission Manager and Permission)
* Added Session Management Classes (Session Manager, MultiSessionManager and Session)
@@ -49,13 +56,13 @@ NOTE: Some API changes have occurred:
* Renamed ReInitalizeHW to ReInitializeHW
* Renamed ReInitalizeOS to ReInitializeOS
-Version 1.3.1 changes (4/5/2017):
+Version 1.3.1 changes (04/05/2017):
* Added FXML Dialog Wrapper
* JavaDocs documentation is improved
* Pom file is improved and updated
* Now hosted on Maven Central
-Version 1.3.0 changes (3/31/2017):
+Version 1.3.0 changes (03/31/2017):
* Added MessageBox and Login dialog objects
* Added Static Class Instantiation Protection
* Added Database Tools classes (Includes SQLite and H2 databases)
diff --git a/README.md b/README.md
index 3300025..233c68e 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-# JavaUltimateTools v1.5.0
-[](https://travis-ci.org/JGCompTech/JavaUltimateTools) [](https://circleci.com/gh/JGCompTech/JavaUltimateTools) [](https://lgtm.com/projects/g/JGCompTech/JavaUltimateTools/context:java) [](https://app.codacy.com/app/jlgager/JavaUltimateTools?utm_source=github.com&utm_medium=referral&utm_content=JGCompTech/JavaUltimateTools&utm_campaign=Badge_Grade_Dashboard) [](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/) [](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools)
+# JavaUltimateTools v1.5.1
+[](https://travis-ci.org/JGCompTech/JavaUltimateTools) [](https://circleci.com/gh/JGCompTech/JavaUltimateTools) [](https://lgtm.com/projects/g/JGCompTech/JavaUltimateTools/context:java) [](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/) [](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools)
Java Ultimate Tools is a large repository of scripts for use in any Java program. It contains the following:
-- OSInfo - Contains many classes that return information about the current Windows installation. This includes Architecture, Edition, Name, Product Key, Service Pack, User Info and Version.
+- OSInfo - Contains many classes that return information about the current OS installation. This includes Architecture, Edition, Name, Product Key, Service Pack, User Info and Version.
- HWInfo - Contains many classes that return information about the current computer hardware. This includes BIOS, Network, OEM, Processor, RAM and Storage.
- SecurityTools - Contains methods surrounding hashing and encryption. Includes methods using MD5, SHA1, SHA256, SHA384 and SHA512. Also includes encryption/decryption with RSA.
- CommandInfo - Allows you to run any console command and will return the result to a string to use within your program. You can also run the command elevated and it will open in a new cmd window and show the results. Note: If elevated, result cannot be returned as a string.
@@ -17,20 +17,19 @@ Java Ultimate Tools is a large repository of scripts for use in any Java program
**NOTE: This Project Has Now Been Updated To Use Java 10!!!**
-If you would like a more details, check out the [CLASSDESCRIPTION.md](https://github.com/JGCompTech/JavaUltimateTools/blob/master/CLASSDESCRIPTION.md) file. I will be updating this with more documentation soon.
-
-If you would like to view the JavaDoc info, it is hosted at [github.io(Current GitHub Branch)](https://jgcomptech.github.io/JavaUltimateTools/) and at [javadoc.io(Current Maven Release)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools). The github.io version is what is stored in the doc folder in the project.
-
-**NOTE: A new documentation site is coming soon to explain in more detail how to use this library!**
-
# Development
Want to contribute? Great!
Any help with development is greatly appreciated. If you want to add something or fix any issues please submit a pull request and if it is helpful it may be merged. Please check out our [Code of Conduct for Contributors](https://github.com/JGCompTech/JavaUltimateTools/blob/master/code-of-conduct.md).
+# Documentation
+The documentation for JUT is currently a work in progress and new changes will be occurring soon.
+To access the documentation site go to: [https://jut-docs.jgcomptech.com](https://jut-docs.jgcomptech.com).
+If you would like to view the JavaDoc info, it is hosted at [github.io(Current GitHub Branch)](https://jgcomptech.github.io/JavaUltimateTools/) and at [javadoc.io(Current Maven Release)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools). The github.io version is what is stored in the doc folder in the project.
+
# Download
-**[Download v1.5.0](https://github.com/JGCompTech/JavaUltimateTools/releases/tag/v1.5.0)**
+**[Download v1.5.1](https://github.com/JGCompTech/JavaUltimateTools/releases/tag/v1.5.1)**
-The changelog can be found [here](https://github.com/JGCompTech/JavaUltimateTools/blob/master/Changelog.txt)
+The changelog can be found [here](https://jut-docs.jgcomptech.com/changelog/)
# Using with Maven
If you are familiar with [Maven](http://maven.apache.org), add the following XML
@@ -40,7 +39,7 @@ fragments into your pom.xml file. With those settings, your Maven will automatic
com.jgcomptech.toolsjava-ultimate-tools
- 1.5.0
+ 1.5.1
diff --git a/buildLog.txt b/buildLog.txt
deleted file mode 100644
index 6579f58..0000000
--- a/buildLog.txt
+++ /dev/null
@@ -1,411 +0,0 @@
-[INFO] Scanning for projects...
-[INFO] Inspecting build with total of 1 modules...
-[INFO] Installing Nexus Staging features:
-[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Java Ultimate Tools 1.4.0
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ java-ultimate-tools ---
-[INFO] Deleting C:\Repositories\JavaUltimateTools\target
-[INFO]
-[INFO] --- maven-clean-plugin:3.0.0:clean (auto-clean) @ java-ultimate-tools ---
-[INFO]
-[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ java-ultimate-tools ---
-[INFO] Using 'UTF-8' encoding to copy filtered resources.
-[INFO] Copying 6 resources
-[INFO]
-[INFO] --- maven-compiler-plugin:3.7.0:compile (default-compile) @ java-ultimate-tools ---
-[INFO] Changes detected - recompiling the module!
-[INFO] Compiling 72 source files to C:\Repositories\JavaUltimateTools\target\classes
-[INFO] /C:/Repositories/JavaUltimateTools/src/main/java/com/jgcomptech/tools/events/EventTarget.java: Some input files use unchecked or unsafe operations.
-[INFO] /C:/Repositories/JavaUltimateTools/src/main/java/com/jgcomptech/tools/events/EventTarget.java: Recompile with -Xlint:unchecked for details.
-[INFO]
-[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ java-ultimate-tools ---
-[INFO] Using 'UTF-8' encoding to copy filtered resources.
-[INFO] skip non existing resourceDirectory C:\Repositories\JavaUltimateTools\src\test\resources
-[INFO]
-[INFO] --- maven-compiler-plugin:3.7.0:testCompile (default-testCompile) @ java-ultimate-tools ---
-[INFO] Changes detected - recompiling the module!
-[INFO] Compiling 2 source files to C:\Repositories\JavaUltimateTools\target\test-classes
-[INFO]
-[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ java-ultimate-tools ---
-[INFO] Surefire report directory: C:\Repositories\JavaUltimateTools\target\surefire-reports
-
--------------------------------------------------------
- T E S T S
--------------------------------------------------------
-Running com.jgcomptech.tools.tests.Tests
-Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.939 sec
-
-Results :
-
-Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
-
-[INFO]
-[INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-resources) @ java-ultimate-tools ---
-[INFO] Using 'UTF-8' encoding to copy filtered resources.
-[INFO] Copying 193 resources
-[INFO]
-[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ java-ultimate-tools ---
-[INFO] Building jar: C:\Repositories\JavaUltimateTools\target\java-ultimate-tools-1.4.0.jar
-[INFO]
-[INFO] --- maven-source-plugin:3.0.1:jar-no-fork (attach-sources) @ java-ultimate-tools ---
-[INFO] Building jar: C:\Repositories\JavaUltimateTools\target\java-ultimate-tools-1.4.0-sources.jar
-[INFO]
-[INFO] --- maven-javadoc-plugin:3.0.0:jar (attach-javadocs) @ java-ultimate-tools ---
-[INFO]
-Loading source files for package com.jgcomptech.tools.authenication...
-Loading source files for package com.jgcomptech.tools...
-Loading source files for package com.jgcomptech.tools.databasetools.jbdc...
-Loading source files for package com.jgcomptech.tools.databasetools...
-Loading source files for package com.jgcomptech.tools.demo...
-Loading source files for package com.jgcomptech.tools.dialogs...
-Loading source files for package com.jgcomptech.tools.enums...
-Loading source files for package com.jgcomptech.tools.events...
-Loading source files for package com.jgcomptech.tools.permissions...
-Constructing Javadoc information...
-Standard Doclet version 1.8.0_121
-Building tree for all the packages and classes...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\MultiSessionManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\Session.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\SessionActivator.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\SessionManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\UserAccount.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\UserManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\UserRole.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\UserRoleManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\UserRoleManager.SystemUserRoles.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\CollectionUtils.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\CommandInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\CommandInfo.Output.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\ComputerInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\EmailValidator.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.BIOS.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.BIOSObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.DriveObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.HWObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.Network.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.NetworkObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.OEM.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.Processor.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.ProcessorObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.RAM.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.RAMObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.Storage.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\HWInfo.StorageObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\Misc.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\Misc.SecondsConverter.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\Misc.SecondsConverter.NegativeNumberException.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\NativeMethods.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\NativeMethods.Kernel32.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\NativeMethods.Secur32.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\NativeMethods.Shell32.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\NumberUtils.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Architecture.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.CheckIf.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.InstallInfoObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Name.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.OSObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.VersionObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.Activation.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.Activation.Status.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.CheckIf.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.Edition.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.Name.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.ServicePack.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.SystemInformation.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.UserInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.Version.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.Version.Type.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\OSInfo.Windows.WMI.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\RegistryInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\RegistryInfo.HKEY.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\SecurityTools.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\SecurityTools.FileHashes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\SecurityTools.HashType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\SecurityTools.PasswordHashes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\SecurityTools.RSAFiles.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\SecurityTools.RSAHashes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\StringUtils.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\WebTools.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\WebTools.HTML.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\ColumnBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\Database.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\Database.Connection.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\Database.Info.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\Database.Settings.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\Database.Tasks.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\DatabaseConnectionInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\DatabaseType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\DataTypes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\DeleteBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\IndexBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\InsertBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\QueryBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\SQLBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\TableBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\TableNotFoundException.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\TypedStatement.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\TypedStatement.Type.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\UpdateBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\WhereBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\demo\Main.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\DialogResult.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\FXMLDialogWrapper.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\LoginDialog.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\MessageBox.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\MessageBoxButtons.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\MessageBoxButtonType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\MessageBoxDefaultButton.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\MessageBoxIcon.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\OSList.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\OSType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\OtherConsts.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\ProductEdition.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\ProductType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\VERSuite.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.COM.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.File_System.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Hardware.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Networking.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.OS.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Other.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Performance_FormattedData.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Performance_RawData.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Security.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Shares.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Storage.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Unknown.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\WMIClasses.Users.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\ActionEvent.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\Event.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\EventHandler.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\EventManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\EventTarget.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\EventType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\PermissionEvent.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\SessionEvent.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\Permission.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\PermissionManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\PermissionManager.SystemPermissions.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\overview-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\demo\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\demo\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\demo\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\package-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\package-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\package-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\constant-values.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\serialized-form.html...
-Copying file StandardDocFile[file:C:\Repositories\JavaUltimateTools\src\main\javadoc\stylesheet.css] to file stylesheet.css...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\UserRoleManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\UserRoleManager.SystemUserRoles.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\UserRole.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\UserManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\UserAccount.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\SessionManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\SessionActivator.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\Session.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\class-use\MultiSessionManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\WebTools.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\WebTools.HTML.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\StringUtils.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\SecurityTools.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\SecurityTools.HashType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\SecurityTools.FileHashes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\SecurityTools.PasswordHashes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\SecurityTools.RSAFiles.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\SecurityTools.RSAHashes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\RegistryInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\RegistryInfo.HKEY.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Architecture.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.CheckIf.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Name.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.Activation.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.Activation.Status.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.CheckIf.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.Edition.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.Name.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.ServicePack.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.SystemInformation.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.UserInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.Version.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.Version.Type.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.Windows.WMI.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.InstallInfoObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.VersionObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\OSInfo.OSObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\NumberUtils.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\NativeMethods.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\NativeMethods.Kernel32.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\NativeMethods.Shell32.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\NativeMethods.Secur32.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\Misc.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\Misc.SecondsConverter.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\Misc.SecondsConverter.NegativeNumberException.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.BIOS.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.Network.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.OEM.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.Processor.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.RAM.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.Storage.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.HWObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.BIOSObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.DriveObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.NetworkObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.ProcessorObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.RAMObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\HWInfo.StorageObject.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\EmailValidator.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\ComputerInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\CommandInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\CommandInfo.Output.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\class-use\CollectionUtils.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\WhereBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\UpdateBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\TypedStatement.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\TypedStatement.Type.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\TableNotFoundException.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\TableBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\SQLBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\QueryBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\InsertBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\IndexBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\DeleteBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\DataTypes.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\DatabaseType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\DatabaseConnectionInfo.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\Database.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\Database.Connection.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\Database.Info.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\Database.Tasks.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\Database.Settings.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\class-use\ColumnBuilder.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\demo\class-use\Main.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\MessageBoxIcon.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\MessageBoxDefaultButton.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\MessageBoxButtonType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\MessageBoxButtons.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\MessageBox.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\LoginDialog.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\FXMLDialogWrapper.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\class-use\DialogResult.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.COM.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.File_System.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Hardware.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Networking.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.OS.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Other.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Performance_FormattedData.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Performance_RawData.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Security.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Shares.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Storage.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Users.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\WMIClasses.Unknown.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\VERSuite.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\ProductType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\ProductEdition.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\OtherConsts.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\OSType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\class-use\OSList.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\SessionEvent.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\PermissionEvent.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\EventType.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\EventTarget.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\EventManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\EventHandler.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\Event.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\class-use\ActionEvent.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\class-use\PermissionManager.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\class-use\PermissionManager.SystemPermissions.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\class-use\Permission.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\authenication\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\databasetools\jbdc\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\demo\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\dialogs\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\enums\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\events\package-use.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\com\jgcomptech\tools\permissions\package-use.html...
-Building index for all the packages and classes...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\overview-tree.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\index-all.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\deprecated-list.html...
-Building index for all classes...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\allclasses-frame.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\allclasses-noframe.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\index.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\overview-summary.html...
-Generating C:\Repositories\JavaUltimateTools\target\apidocs\help-doc.html...
-8 warnings
-[WARNING] Javadoc Warnings
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:60: warning - @param argument "T" is not a parameter name.
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:76: warning - @param argument "K" is not a parameter name.
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:76: warning - @param argument "V" is not a parameter name.
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:91: warning - @param argument "T" is not a parameter name.
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:107: warning - @param argument "K" is not a parameter name.
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:107: warning - @param argument "V" is not a parameter name.
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:127: warning - @param argument "K" is not a parameter name.
-[WARNING] C:\Repositories\JavaUltimateTools\src\main\java\com\jgcomptech\tools\CollectionUtils.java:127: warning - @param argument "V" is not a parameter name.
-[INFO] Building jar: C:\Repositories\JavaUltimateTools\target\java-ultimate-tools-1.4.0-javadoc.jar
-[INFO]
-[INFO] --- maven-shade-plugin:3.1.0:shade (default) @ java-ultimate-tools ---
-[INFO] Including org.apache.commons:commons-lang3:jar:3.7 in the shaded jar.
-[INFO] Including net.java.dev.jna:jna-platform:jar:4.5.1 in the shaded jar.
-[INFO] Including net.java.dev.jna:jna:jar:4.5.1 in the shaded jar.
-[INFO] Including junit:junit:jar:4.12 in the shaded jar.
-[INFO] Including org.hamcrest:hamcrest-core:jar:1.3 in the shaded jar.
-[INFO] Including org.xerial:sqlite-jdbc:jar:3.21.0.1 in the shaded jar.
-[INFO] Including com.h2database:h2:jar:1.4.196 in the shaded jar.
-[INFO] Including org.hsqldb:hsqldb:jar:2.4.0 in the shaded jar.
-[INFO] Including org.apache.commons:commons-dbcp2:jar:2.2.0 in the shaded jar.
-[INFO] Including org.apache.commons:commons-pool2:jar:2.5.0 in the shaded jar.
-[INFO] Including commons-logging:commons-logging:jar:1.2 in the shaded jar.
-[INFO] Including org.apache.maven:maven-model:jar:3.5.2 in the shaded jar.
-[INFO] Including org.codehaus.plexus:plexus-utils:jar:3.1.0 in the shaded jar.
-[INFO] Including org.netbeans.api:org-openide-util-lookup:jar:RELEASE802 in the shaded jar.
-[INFO] Including commons-codec:commons-codec:jar:1.11 in the shaded jar.
-[INFO] Including org.jetbrains:annotations:jar:15.0 in the shaded jar.
-[INFO] Replacing original artifact with shaded artifact.
-[INFO] Replacing C:\Repositories\JavaUltimateTools\target\java-ultimate-tools-1.4.0.jar with C:\Repositories\JavaUltimateTools\target\java-ultimate-tools-1.4.0-shaded.jar
-[INFO] Dependency-reduced POM written at: C:\Repositories\JavaUltimateTools\dependency-reduced-pom.xml
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 59.056 s
-[INFO] Finished at: 2018-01-19T20:19:04-05:00
-[INFO] Final Memory: 28M/209M
-[INFO] ------------------------------------------------------------------------
\ No newline at end of file
diff --git a/docs/allclasses-frame.html b/docs/allclasses-frame.html
index b32da10..7f1f731 100644
--- a/docs/allclasses-frame.html
+++ b/docs/allclasses-frame.html
@@ -2,10 +2,10 @@
Attempts to login the specified user account from the specified token under the single-session context.
Parameters:
token - the username and password token to use for login
Returns:
true if login succeeds, false if login fails
+
Throws:
+
CredentialsException - if the token is null, if the username or password in the specified token are null
+ or if the username in the specified token is an empty string
Attempts to login the specified user account from the previously saved token under the single-session context.
+ The token is only saved if the previously supplied token had rememberMe set to true.
+
+
Returns:
+
true if login succeeds, false if login fails
+
Throws:
+
CredentialsException - if no token was previously saved, if the token is null,
+ if the username or password in the specified token are null
+ or if the username in the specified token is an empty string
Attempts to login the specified user account from the previously saved token under the single-session context.
The token is only saved if the previously supplied token had rememberMe set to true.
+
Parameters:
+
multiSession - if true, logs in the user under the multi-session context,
+ or if false, under the single-session context
CredentialsException - if no token was previously saved, if the token is null,
+ if the username or password in the specified token are null
+ or if the username in the specified token is an empty string
Attempts to login the specified user account from the specified token.
Parameters:
@@ -511,6 +565,10 @@
login
or if false, under the single-session context
Returns:
true if login succeeds, false if login fails
+
Throws:
+
CredentialsException - if the token is null, if the username or password in the specified token are null
+ or if the username in the specified token is an empty string
Checks that the logged in user, under the single session context,
diff --git a/docs/index-files/index-18.html b/docs/index-files/index-18.html
index 12ef6ac..5a77719 100644
--- a/docs/index-files/index-18.html
+++ b/docs/index-files/index-18.html
@@ -2,10 +2,10 @@
-
+
S-Index
-
+
@@ -309,6 +309,10 @@
S
Contains methods for all session related event handlers.