diff --git a/.gitignore b/.gitignore
index 79098fb..2e3e4f4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,7 @@
.settings
# IDE-based
-Launcher.iml
+lightspeed.iml
out
.idea
diff --git a/.gitmodules b/.gitmodules
index 4eee959..29df536 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,12 +1,9 @@
[submodule "pswgcommon"]
path = pswgcommon
url = git@bitbucket.org:projectswg/pswgcommon.git
-[submodule "PSWGCommon"]
- path = PSWGCommon
- url = git@bitbucket.org:projectswg/pswgcommon.git
-[submodule "PSWGCommonFX"]
- path = PSWGCommonFX
+[submodule "pswgcommonfx"]
+ path = pswgcommonfx
url = git@bitbucket.org:projectswg/pswgcommonfx.git
-[submodule "ClientHolocore"]
- path = ClientHolocore
+[submodule "client-holocore"]
+ path = client-holocore
url = git@bitbucket.org:projectswg/client-holocore.git
diff --git a/ClientHolocore b/ClientHolocore
deleted file mode 160000
index 58c943d..0000000
--- a/ClientHolocore
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 58c943d639dab26e0d0d7005be2b553e5f5f5283
diff --git a/PSWGCommon b/PSWGCommon
deleted file mode 160000
index 5f1ce51..0000000
--- a/PSWGCommon
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 5f1ce51e0a8f15e095447d7292dfbd9ae9807c71
diff --git a/PSWGCommonFX b/PSWGCommonFX
deleted file mode 160000
index c557236..0000000
--- a/PSWGCommonFX
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit c557236c82fae5a099b8671875408b6489725309
diff --git a/build.gradle b/build.gradle
index 6f37a9a..a61ffa9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,13 +1,12 @@
-group 'chat.nibble'
+group 'com.projectswg.lightspeed'
version '0.0'
apply plugin: 'java'
+sourceCompatibility = 10
+targetCompatibility = 10
dependencies {
compile project(':lightspeed-server')
compile project(':lightspeed-client')
}
-task wrapper(type: Wrapper) {
- gradleVersion = "4.4"
-}
diff --git a/client-holocore b/client-holocore
new file mode 160000
index 0000000..450ce04
--- /dev/null
+++ b/client-holocore
@@ -0,0 +1 @@
+Subproject commit 450ce04c13ac4f80bb5061bb38a2abfe0939ed93
diff --git a/lightspeed-client/build.gradle b/lightspeed-client/build.gradle
index d33a0d9..471395b 100644
--- a/lightspeed-client/build.gradle
+++ b/lightspeed-client/build.gradle
@@ -3,12 +3,12 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2'
+ classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
}
}
plugins {
- id 'com.github.johnrengelman.shadow' version '2.0.2'
+ id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'application'
id 'java'
id 'idea'
@@ -18,11 +18,10 @@ version '1.0.0'
mainClassName = 'com.projectswg.lightspeed_frontend.LightspeedFrontendGUI'
-sourceCompatibility = 1.9
-targetCompatibility = 1.9
+sourceCompatibility = 10
+targetCompatibility = 10
repositories {
- maven { url 'https://repo.gradle.org/gradle/libs-releases' }
jcenter()
}
@@ -39,6 +38,3 @@ shadowJar {
version = null
}
-task wrapper(type: Wrapper) {
- gradleVersion = "4.4"
-}
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/Frontend.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/Frontend.class
deleted file mode 100644
index 7914309..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/Frontend.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class
deleted file mode 100644
index 3392206..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData.class
deleted file mode 100644
index 1c88a9f..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class
deleted file mode 100644
index 7203263..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class
deleted file mode 100644
index bc5fdb8..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class
deleted file mode 100644
index bb2ebe7..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient.class
deleted file mode 100644
index e906a8b..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/InternalWindow.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/InternalWindow.class
deleted file mode 100644
index 19606f6..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/InternalWindow.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class
deleted file mode 100644
index 522c95f..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class
deleted file mode 100644
index 328857a..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class
deleted file mode 100644
index 7a02949..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class
deleted file mode 100644
index fdd7c8e..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class
deleted file mode 100644
index 84fa4f5..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class
deleted file mode 100644
index fcc32d2..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class
deleted file mode 100644
index 9dd9646..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class
deleted file mode 100644
index c9c7057..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class
deleted file mode 100644
index 7e16586..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class
deleted file mode 100644
index 156bbca..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class
deleted file mode 100644
index 1dc3dc4..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class
deleted file mode 100644
index a1afd0c..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class
deleted file mode 100644
index 0b33909..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class
deleted file mode 100644
index 651931d..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class
deleted file mode 100644
index 4f454ed..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class
deleted file mode 100644
index e0fcbce..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class
deleted file mode 100644
index 7738982..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class
deleted file mode 100644
index 31b6b36..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class
deleted file mode 100644
index e879883..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class
deleted file mode 100644
index 7a31972..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/Dialog.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/Dialog.class
deleted file mode 100644
index 4dc0210..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/Dialog.class and /dev/null differ
diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class
deleted file mode 100644
index 852709d..0000000
Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class and /dev/null differ
diff --git a/lightspeed-client/build/libs/LightspeedFrontend.jar b/lightspeed-client/build/libs/LightspeedFrontend.jar
deleted file mode 100644
index 19c5a60..0000000
Binary files a/lightspeed-client/build/libs/LightspeedFrontend.jar and /dev/null differ
diff --git a/lightspeed-client/build/resources/main/bundles/strings/strings.properties b/lightspeed-client/build/resources/main/bundles/strings/strings.properties
deleted file mode 100644
index 0ef6803..0000000
--- a/lightspeed-client/build/resources/main/bundles/strings/strings.properties
+++ /dev/null
@@ -1,27 +0,0 @@
-#####################################################################################
-# Copyright (c) 2018 /// Project SWG /// www.projectswg.com #
-# #
-# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on #
-# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. #
-# Our goal is to create an emulator which will provide a server for players to #
-# continue playing a game similar to the one they used to play. We are basing #
-# it on the final publish of the game prior to end-game events. #
-# #
-# This file is part of Lightspeed. #
-# #
-# -------------------------------------------------------------------------------- #
-# #
-# Lightspeed is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# Lightspeed is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with Lightspeed. If not, see . #
-# #
-#####################################################################################
diff --git a/lightspeed-client/build/resources/main/bundles/strings/strings_de.properties b/lightspeed-client/build/resources/main/bundles/strings/strings_de.properties
deleted file mode 100644
index 0ef6803..0000000
--- a/lightspeed-client/build/resources/main/bundles/strings/strings_de.properties
+++ /dev/null
@@ -1,27 +0,0 @@
-#####################################################################################
-# Copyright (c) 2018 /// Project SWG /// www.projectswg.com #
-# #
-# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on #
-# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. #
-# Our goal is to create an emulator which will provide a server for players to #
-# continue playing a game similar to the one they used to play. We are basing #
-# it on the final publish of the game prior to end-game events. #
-# #
-# This file is part of Lightspeed. #
-# #
-# -------------------------------------------------------------------------------- #
-# #
-# Lightspeed is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# Lightspeed is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with Lightspeed. If not, see . #
-# #
-#####################################################################################
diff --git a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.css b/lightspeed-client/build/resources/main/res/fxml/PrimaryView.css
deleted file mode 100644
index 92ba148..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.css
+++ /dev/null
@@ -1,58 +0,0 @@
-#primaryViewContainer {
- -fx-background-color: #000000;
- -fx-text-fill: #FFFFFF;
- -fx-pref-width: 800;
- -fx-pref-height: 640;
-}
-
-#commonPanel {
- -fx-border-color: #000000;
- -fx-border-width: 0 0 1 0;
- -fx-border-style: solid;
-}
-
-#primaryTabGeneral {
- -fx-text-fill: #FFFFFF;
-}
-
-.tab-pane .tab-header-area .tab-header-background {
- -fx-opacity: 0.0;
-}
-
-.tab-pane {
- -fx-tab-min-width: 150.0px;
- -fx-text-fill: #FFFFFF;
-}
-
-.tab-header-area {
- -fx-border-color: #3c3c3c;
- -fx-border-width: 0 0 1 0;
- -fx-border-style: solid;
-}
-
-.tab {
- -fx-background-insets: 0.0 1.0 0.0 1.0, 0.0, 0.0;
-}
-
-.tab-pane .tab {
- -fx-background-color: #e6e6e6;
- -fx-focus-color: transparent;
- -fx-faint-focus-color: transparent;
-}
-
-.tab-pane .tab:selected {
- -fx-background-color: #3c3c3c;
- -fx-border-width: 0 0 0 0;
-}
-
-.tab .tab-label {
- -fx-alignment: CENTER;
- -fx-text-fill: #000000;
- -fx-font-size: 12.0px;
- -fx-font-weight: bold;
-}
-
-.tab:selected .tab-label {
- -fx-alignment: CENTER;
- -fx-text-fill: #00af00;
-}
diff --git a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.fxml b/lightspeed-client/build/resources/main/res/fxml/PrimaryView.fxml
deleted file mode 100644
index 3836df7..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.fxml
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.css b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.css
deleted file mode 100644
index 276b8e9..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.fxml b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.fxml
deleted file mode 100644
index 6374e6f..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.fxml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.css b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.css
deleted file mode 100644
index 37a1e66..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.css
+++ /dev/null
@@ -1,22 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
-
-.log {
- -fx-text-fill: #FFFFFF;
-}
-
-.log .content {
- -fx-background: #3F4042;
- -fx-background-color: #3F4042;
- -fx-border-color: white;
- -fx-border-width: 1 0 1 0;
-}
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.fxml b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.fxml
deleted file mode 100644
index f7ac422..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.fxml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/General.css b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/General.css
deleted file mode 100644
index 276b8e9..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/General.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/General.fxml b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/General.fxml
deleted file mode 100644
index ec3959b..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/General.fxml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Settings.css b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Settings.css
deleted file mode 100644
index 37a1e66..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Settings.css
+++ /dev/null
@@ -1,22 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
-
-.log {
- -fx-text-fill: #FFFFFF;
-}
-
-.log .content {
- -fx-background: #3F4042;
- -fx-background-color: #3F4042;
- -fx-border-color: white;
- -fx-border-width: 1 0 1 0;
-}
diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Settings.fxml b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Settings.fxml
deleted file mode 100644
index dca03c6..0000000
--- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Settings.fxml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/build/tmp/shadowJar/MANIFEST.MF b/lightspeed-client/build/tmp/shadowJar/MANIFEST.MF
deleted file mode 100644
index bc7a34d..0000000
--- a/lightspeed-client/build/tmp/shadowJar/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: com.projectswg.lightspeed_frontend.LightspeedFrontendGUI
-
diff --git a/lightspeed-client/gradle/wrapper/gradle-wrapper.jar b/lightspeed-client/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 99340b4..0000000
Binary files a/lightspeed-client/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/lightspeed-client/gradle/wrapper/gradle-wrapper.properties b/lightspeed-client/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 58aa461..0000000
--- a/lightspeed-client/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,32 +0,0 @@
-#####################################################################################
-# Copyright (c) 2018 /// Project SWG /// www.projectswg.com #
-# #
-# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on #
-# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. #
-# Our goal is to create an emulator which will provide a server for players to #
-# continue playing a game similar to the one they used to play. We are basing #
-# it on the final publish of the game prior to end-game events. #
-# #
-# This file is part of Lightspeed. #
-# #
-# -------------------------------------------------------------------------------- #
-# #
-# Lightspeed is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# Lightspeed is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with Lightspeed. If not, see . #
-# #
-#####################################################################################
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStorePath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
diff --git a/lightspeed-client/out/lightspeed/resources/bundles/strings/strings.properties b/lightspeed-client/out/lightspeed/resources/bundles/strings/strings.properties
deleted file mode 100644
index e69de29..0000000
diff --git a/lightspeed-client/out/lightspeed/resources/bundles/strings/strings_de.properties b/lightspeed-client/out/lightspeed/resources/bundles/strings/strings_de.properties
deleted file mode 100644
index e69de29..0000000
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/PrimaryView.css b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/PrimaryView.css
deleted file mode 100644
index 92ba148..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/PrimaryView.css
+++ /dev/null
@@ -1,58 +0,0 @@
-#primaryViewContainer {
- -fx-background-color: #000000;
- -fx-text-fill: #FFFFFF;
- -fx-pref-width: 800;
- -fx-pref-height: 640;
-}
-
-#commonPanel {
- -fx-border-color: #000000;
- -fx-border-width: 0 0 1 0;
- -fx-border-style: solid;
-}
-
-#primaryTabGeneral {
- -fx-text-fill: #FFFFFF;
-}
-
-.tab-pane .tab-header-area .tab-header-background {
- -fx-opacity: 0.0;
-}
-
-.tab-pane {
- -fx-tab-min-width: 150.0px;
- -fx-text-fill: #FFFFFF;
-}
-
-.tab-header-area {
- -fx-border-color: #3c3c3c;
- -fx-border-width: 0 0 1 0;
- -fx-border-style: solid;
-}
-
-.tab {
- -fx-background-insets: 0.0 1.0 0.0 1.0, 0.0, 0.0;
-}
-
-.tab-pane .tab {
- -fx-background-color: #e6e6e6;
- -fx-focus-color: transparent;
- -fx-faint-focus-color: transparent;
-}
-
-.tab-pane .tab:selected {
- -fx-background-color: #3c3c3c;
- -fx-border-width: 0 0 0 0;
-}
-
-.tab .tab-label {
- -fx-alignment: CENTER;
- -fx-text-fill: #000000;
- -fx-font-size: 12.0px;
- -fx-font-weight: bold;
-}
-
-.tab:selected .tab-label {
- -fx-alignment: CENTER;
- -fx-text-fill: #00af00;
-}
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/PrimaryView.fxml b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/PrimaryView.fxml
deleted file mode 100644
index 16f5817..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/PrimaryView.fxml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Build.css b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Build.css
deleted file mode 100644
index 276b8e9..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Build.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Build.fxml b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Build.fxml
deleted file mode 100644
index 640afd5..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Build.fxml
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Deployment.css b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Deployment.css
deleted file mode 100644
index 37a1e66..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Deployment.css
+++ /dev/null
@@ -1,22 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
-
-.log {
- -fx-text-fill: #FFFFFF;
-}
-
-.log .content {
- -fx-background: #3F4042;
- -fx-background-color: #3F4042;
- -fx-border-color: white;
- -fx-border-width: 1 0 1 0;
-}
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Deployment.fxml b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Deployment.fxml
deleted file mode 100644
index 23d45cd..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Deployment.fxml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/General.css b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/General.css
deleted file mode 100644
index 276b8e9..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/General.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/General.fxml b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/General.fxml
deleted file mode 100644
index 9909b30..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/General.fxml
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Settings.css b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Settings.css
deleted file mode 100644
index 37a1e66..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Settings.css
+++ /dev/null
@@ -1,22 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
-
-.log {
- -fx-text-fill: #FFFFFF;
-}
-
-.log .content {
- -fx-background: #3F4042;
- -fx-background-color: #3F4042;
- -fx-border-color: white;
- -fx-border-width: 1 0 1 0;
-}
diff --git a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Settings.fxml b/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Settings.fxml
deleted file mode 100644
index 60dfeab..0000000
--- a/lightspeed-client/out/lightspeed/resources/com/projectswg/lightspeed_frontend/fxml/primary_tabs/Settings.fxml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/Frontend.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/Frontend.class
deleted file mode 100644
index 7914309..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/Frontend.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class
deleted file mode 100644
index 3392206..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/FrontendData.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/FrontendData.class
deleted file mode 100644
index 1c88a9f..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/FrontendData.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class
deleted file mode 100644
index 7203263..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class
deleted file mode 100644
index bc5fdb8..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class
deleted file mode 100644
index bb2ebe7..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/HttpClient.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/HttpClient.class
deleted file mode 100644
index e906a8b..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/communication/HttpClient.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/InternalWindow.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/InternalWindow.class
deleted file mode 100644
index 19606f6..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/InternalWindow.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class
deleted file mode 100644
index 522c95f..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class
deleted file mode 100644
index 328857a..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class
deleted file mode 100644
index 7a02949..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class
deleted file mode 100644
index fdd7c8e..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class
deleted file mode 100644
index 84fa4f5..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class
deleted file mode 100644
index fcc32d2..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class
deleted file mode 100644
index 9dd9646..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class
deleted file mode 100644
index c9c7057..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class
deleted file mode 100644
index 7e16586..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class
deleted file mode 100644
index 156bbca..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class
deleted file mode 100644
index 1dc3dc4..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class
deleted file mode 100644
index a1afd0c..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class
deleted file mode 100644
index 0b33909..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class
deleted file mode 100644
index 651931d..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class
deleted file mode 100644
index 4f454ed..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class
deleted file mode 100644
index e0fcbce..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class
deleted file mode 100644
index 7738982..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class
deleted file mode 100644
index 31b6b36..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class
deleted file mode 100644
index e879883..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class
deleted file mode 100644
index 7a31972..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/javafx/Dialog.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/javafx/Dialog.class
deleted file mode 100644
index 4dc0210..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/javafx/Dialog.class and /dev/null differ
diff --git a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class b/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class
deleted file mode 100644
index 852709d..0000000
Binary files a/lightspeed-client/out/production/classes/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class and /dev/null differ
diff --git a/lightspeed-client/out/production/resources/bundles/strings/strings.properties b/lightspeed-client/out/production/resources/bundles/strings/strings.properties
deleted file mode 100644
index 0ef6803..0000000
--- a/lightspeed-client/out/production/resources/bundles/strings/strings.properties
+++ /dev/null
@@ -1,27 +0,0 @@
-#####################################################################################
-# Copyright (c) 2018 /// Project SWG /// www.projectswg.com #
-# #
-# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on #
-# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. #
-# Our goal is to create an emulator which will provide a server for players to #
-# continue playing a game similar to the one they used to play. We are basing #
-# it on the final publish of the game prior to end-game events. #
-# #
-# This file is part of Lightspeed. #
-# #
-# -------------------------------------------------------------------------------- #
-# #
-# Lightspeed is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# Lightspeed is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with Lightspeed. If not, see . #
-# #
-#####################################################################################
diff --git a/lightspeed-client/out/production/resources/bundles/strings/strings_de.properties b/lightspeed-client/out/production/resources/bundles/strings/strings_de.properties
deleted file mode 100644
index 0ef6803..0000000
--- a/lightspeed-client/out/production/resources/bundles/strings/strings_de.properties
+++ /dev/null
@@ -1,27 +0,0 @@
-#####################################################################################
-# Copyright (c) 2018 /// Project SWG /// www.projectswg.com #
-# #
-# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on #
-# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. #
-# Our goal is to create an emulator which will provide a server for players to #
-# continue playing a game similar to the one they used to play. We are basing #
-# it on the final publish of the game prior to end-game events. #
-# #
-# This file is part of Lightspeed. #
-# #
-# -------------------------------------------------------------------------------- #
-# #
-# Lightspeed is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# Lightspeed is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with Lightspeed. If not, see . #
-# #
-#####################################################################################
diff --git a/lightspeed-client/out/production/resources/res/fxml/PrimaryView.css b/lightspeed-client/out/production/resources/res/fxml/PrimaryView.css
deleted file mode 100644
index 92ba148..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/PrimaryView.css
+++ /dev/null
@@ -1,58 +0,0 @@
-#primaryViewContainer {
- -fx-background-color: #000000;
- -fx-text-fill: #FFFFFF;
- -fx-pref-width: 800;
- -fx-pref-height: 640;
-}
-
-#commonPanel {
- -fx-border-color: #000000;
- -fx-border-width: 0 0 1 0;
- -fx-border-style: solid;
-}
-
-#primaryTabGeneral {
- -fx-text-fill: #FFFFFF;
-}
-
-.tab-pane .tab-header-area .tab-header-background {
- -fx-opacity: 0.0;
-}
-
-.tab-pane {
- -fx-tab-min-width: 150.0px;
- -fx-text-fill: #FFFFFF;
-}
-
-.tab-header-area {
- -fx-border-color: #3c3c3c;
- -fx-border-width: 0 0 1 0;
- -fx-border-style: solid;
-}
-
-.tab {
- -fx-background-insets: 0.0 1.0 0.0 1.0, 0.0, 0.0;
-}
-
-.tab-pane .tab {
- -fx-background-color: #e6e6e6;
- -fx-focus-color: transparent;
- -fx-faint-focus-color: transparent;
-}
-
-.tab-pane .tab:selected {
- -fx-background-color: #3c3c3c;
- -fx-border-width: 0 0 0 0;
-}
-
-.tab .tab-label {
- -fx-alignment: CENTER;
- -fx-text-fill: #000000;
- -fx-font-size: 12.0px;
- -fx-font-weight: bold;
-}
-
-.tab:selected .tab-label {
- -fx-alignment: CENTER;
- -fx-text-fill: #00af00;
-}
diff --git a/lightspeed-client/out/production/resources/res/fxml/PrimaryView.fxml b/lightspeed-client/out/production/resources/res/fxml/PrimaryView.fxml
deleted file mode 100644
index 3836df7..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/PrimaryView.fxml
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Build.css b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Build.css
deleted file mode 100644
index 276b8e9..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Build.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Build.fxml b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Build.fxml
deleted file mode 100644
index 6374e6f..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Build.fxml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Deployment.css b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Deployment.css
deleted file mode 100644
index 37a1e66..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Deployment.css
+++ /dev/null
@@ -1,22 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
-
-.log {
- -fx-text-fill: #FFFFFF;
-}
-
-.log .content {
- -fx-background: #3F4042;
- -fx-background-color: #3F4042;
- -fx-border-color: white;
- -fx-border-width: 1 0 1 0;
-}
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Deployment.fxml b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Deployment.fxml
deleted file mode 100644
index f7ac422..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Deployment.fxml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/General.css b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/General.css
deleted file mode 100644
index 276b8e9..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/General.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/General.fxml b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/General.fxml
deleted file mode 100644
index ec3959b..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/General.fxml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Settings.css b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Settings.css
deleted file mode 100644
index 37a1e66..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Settings.css
+++ /dev/null
@@ -1,22 +0,0 @@
-.white-label {
- -fx-text-fill: #FFFFFF;
-}
-
-.red-label {
- -fx-text-fill: #ff1e1e;
-}
-
-.green-label {
- -fx-text-fill: #04ff00;
-}
-
-.log {
- -fx-text-fill: #FFFFFF;
-}
-
-.log .content {
- -fx-background: #3F4042;
- -fx-background-color: #3F4042;
- -fx-border-color: white;
- -fx-border-width: 1 0 1 0;
-}
diff --git a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Settings.fxml b/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Settings.fxml
deleted file mode 100644
index dca03c6..0000000
--- a/lightspeed-client/out/production/resources/res/fxml/primary_tabs/Settings.fxml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lightspeed-client/src/main/java/com/projectswg/lightspeed_frontend/communication/HttpClient.java b/lightspeed-client/src/main/java/com/projectswg/lightspeed_frontend/communication/HttpClient.java
index 752b5d0..30da641 100644
--- a/lightspeed-client/src/main/java/com/projectswg/lightspeed_frontend/communication/HttpClient.java
+++ b/lightspeed-client/src/main/java/com/projectswg/lightspeed_frontend/communication/HttpClient.java
@@ -29,7 +29,7 @@ package com.projectswg.lightspeed_frontend.communication;
import com.projectswg.common.debug.Log;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import com.projectswg.lightspeed_frontend.intents.InboundConnectionUpdateIntent;
import com.projectswg.lightspeed_frontend.intents.InboundPacketIntent;
import me.joshlarson.json.JSONObject;
@@ -182,7 +182,7 @@ public class HttpClient {
Log.d("RX %s", object.toString(true));
return;
}
- PacketType request = PacketType.valueOf(object.getString("type"));
+ LightspeedPacketType request = LightspeedPacketType.valueOf(object.getString("type"));
Packet packet = Packet.inflate(object, request);
if (packet == null) {
Log.e("HttpClient: Failed to inflate %s [%s]", request, object.getString("type"));
diff --git a/lightspeed-common/build.gradle b/lightspeed-common/build.gradle
index aa5fa3c..c47ea91 100644
--- a/lightspeed-common/build.gradle
+++ b/lightspeed-common/build.gradle
@@ -5,8 +5,8 @@ plugins {
version '1.0.0'
-sourceCompatibility = 1.9
-targetCompatibility = 1.9
+sourceCompatibility = 10
+targetCompatibility = 10
repositories {
jcenter()
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/CsvTable.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/CsvTable.class
deleted file mode 100644
index aaf857a..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/CsvTable.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/PSWGData.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/PSWGData.class
deleted file mode 100644
index 00a509c..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/PSWGData.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/PSWGInformation.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/PSWGInformation.class
deleted file mode 100644
index 10918f5..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/PSWGInformation.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedBuildData$BuildState.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedBuildData$BuildState.class
deleted file mode 100644
index 7662fc0..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedBuildData$BuildState.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedBuildData.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedBuildData.class
deleted file mode 100644
index 55c6cf2..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedBuildData.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedData.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedData.class
deleted file mode 100644
index 32e768d..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedData.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedDeploymentData$DeploymentState.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedDeploymentData$DeploymentState.class
deleted file mode 100644
index 518bebf..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedDeploymentData$DeploymentState.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedDeploymentData.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedDeploymentData.class
deleted file mode 100644
index 8163411..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedDeploymentData.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedServerData.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedServerData.class
deleted file mode 100644
index 712dfc6..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/SharedServerData.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/TestDetails.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/data/TestDetails.class
deleted file mode 100644
index 58029bd..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/data/TestDetails.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/Packet$1.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/Packet$1.class
deleted file mode 100644
index 8cc0339..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/Packet$1.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/Packet.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/Packet.class
deleted file mode 100644
index 3f78f6b..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/Packet.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/PacketType.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/PacketType.class
deleted file mode 100644
index 7c2e3dc..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/PacketType.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/connection/AuthenticatePacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/connection/AuthenticatePacket.class
deleted file mode 100644
index da0475c..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/connection/AuthenticatePacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/connection/ConnectionPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/connection/ConnectionPacket.class
deleted file mode 100644
index c2eb4e3..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/connection/ConnectionPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostBuildPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostBuildPacket.class
deleted file mode 100644
index e50cdba..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostBuildPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostDeployPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostDeployPacket.class
deleted file mode 100644
index 7f293cc..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostDeployPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostPacket.class
deleted file mode 100644
index a2ba9ab..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostResult.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostResult.class
deleted file mode 100644
index 1d2f8a8..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostResult.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostStopBuildPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostStopBuildPacket.class
deleted file mode 100644
index edb407f..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostStopBuildPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostStopDeployPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostStopDeployPacket.class
deleted file mode 100644
index ff4bfdc..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/post/PostStopDeployPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.class
deleted file mode 100644
index bcf0b15..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestBuildListPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestBuildListPacket.class
deleted file mode 100644
index 8c89b24..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestBuildListPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.class
deleted file mode 100644
index cc9f17e..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.class
deleted file mode 100644
index 666ece9..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestPacket.class
deleted file mode 100644
index d12ef33..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.class
deleted file mode 100644
index 8f17ea6..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestServerListPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestServerListPacket.class
deleted file mode 100644
index 87f33fe..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/request/RequestServerListPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.class
deleted file mode 100644
index 4a3b78d..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseBuildListPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseBuildListPacket.class
deleted file mode 100644
index 6da4d9c..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseBuildListPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.class
deleted file mode 100644
index 6179f8d..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.class
deleted file mode 100644
index deea293..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponsePacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponsePacket.class
deleted file mode 100644
index 67f92f4..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponsePacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.class
deleted file mode 100644
index 9332ae9..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseServerListPacket.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseServerListPacket.class
deleted file mode 100644
index 98c5cd5..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/network/packets/response/ResponseServerListPacket.class and /dev/null differ
diff --git a/lightspeed-common/build/classes/java/main/com/projectswg/common/utilities/TimeFormatUtilities.class b/lightspeed-common/build/classes/java/main/com/projectswg/common/utilities/TimeFormatUtilities.class
deleted file mode 100644
index b511b35..0000000
Binary files a/lightspeed-common/build/classes/java/main/com/projectswg/common/utilities/TimeFormatUtilities.class and /dev/null differ
diff --git a/lightspeed-common/build/libs/lightspeed-common-1.0.0.jar b/lightspeed-common/build/libs/lightspeed-common-1.0.0.jar
deleted file mode 100644
index 7d68e2e..0000000
Binary files a/lightspeed-common/build/libs/lightspeed-common-1.0.0.jar and /dev/null differ
diff --git a/lightspeed-common/build/tmp/jar/MANIFEST.MF b/lightspeed-common/build/tmp/jar/MANIFEST.MF
deleted file mode 100644
index 58630c0..0000000
--- a/lightspeed-common/build/tmp/jar/MANIFEST.MF
+++ /dev/null
@@ -1,2 +0,0 @@
-Manifest-Version: 1.0
-
diff --git a/lightspeed-common/gradle/wrapper/gradle-wrapper.jar b/lightspeed-common/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 99340b4..0000000
Binary files a/lightspeed-common/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/lightspeed-common/gradle/wrapper/gradle-wrapper.properties b/lightspeed-common/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 58aa461..0000000
--- a/lightspeed-common/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,32 +0,0 @@
-#####################################################################################
-# Copyright (c) 2018 /// Project SWG /// www.projectswg.com #
-# #
-# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on #
-# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. #
-# Our goal is to create an emulator which will provide a server for players to #
-# continue playing a game similar to the one they used to play. We are basing #
-# it on the final publish of the game prior to end-game events. #
-# #
-# This file is part of Lightspeed. #
-# #
-# -------------------------------------------------------------------------------- #
-# #
-# Lightspeed is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# Lightspeed is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with Lightspeed. If not, see . #
-# #
-#####################################################################################
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStorePath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/CsvTable.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/CsvTable.class
deleted file mode 100644
index aaf857a..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/CsvTable.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/PSWGData.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/PSWGData.class
deleted file mode 100644
index 00a509c..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/PSWGData.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/PSWGInformation.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/PSWGInformation.class
deleted file mode 100644
index 10918f5..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/PSWGInformation.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedBuildData$BuildState.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedBuildData$BuildState.class
deleted file mode 100644
index 7662fc0..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedBuildData$BuildState.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedBuildData.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedBuildData.class
deleted file mode 100644
index 55c6cf2..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedBuildData.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedData.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedData.class
deleted file mode 100644
index 32e768d..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedData.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedDeploymentData$DeploymentState.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedDeploymentData$DeploymentState.class
deleted file mode 100644
index 518bebf..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedDeploymentData$DeploymentState.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedDeploymentData.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedDeploymentData.class
deleted file mode 100644
index 8163411..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedDeploymentData.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedServerData.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedServerData.class
deleted file mode 100644
index 712dfc6..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/SharedServerData.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/data/TestDetails.class b/lightspeed-common/out/production/classes/com/projectswg/common/data/TestDetails.class
deleted file mode 100644
index 58029bd..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/data/TestDetails.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/Packet$1.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/Packet$1.class
deleted file mode 100644
index 8cc0339..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/Packet$1.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/Packet.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/Packet.class
deleted file mode 100644
index 3f78f6b..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/Packet.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/PacketType.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/PacketType.class
deleted file mode 100644
index 7c2e3dc..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/PacketType.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/connection/AuthenticatePacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/connection/AuthenticatePacket.class
deleted file mode 100644
index da0475c..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/connection/AuthenticatePacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/connection/ConnectionPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/connection/ConnectionPacket.class
deleted file mode 100644
index c2eb4e3..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/connection/ConnectionPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostBuildPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostBuildPacket.class
deleted file mode 100644
index e50cdba..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostBuildPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostDeployPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostDeployPacket.class
deleted file mode 100644
index 7f293cc..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostDeployPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostPacket.class
deleted file mode 100644
index a2ba9ab..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostResult.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostResult.class
deleted file mode 100644
index 1d2f8a8..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostResult.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostStopBuildPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostStopBuildPacket.class
deleted file mode 100644
index edb407f..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostStopBuildPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostStopDeployPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostStopDeployPacket.class
deleted file mode 100644
index ff4bfdc..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/post/PostStopDeployPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.class
deleted file mode 100644
index bcf0b15..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestBuildListPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestBuildListPacket.class
deleted file mode 100644
index 8c89b24..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestBuildListPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.class
deleted file mode 100644
index cc9f17e..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.class
deleted file mode 100644
index 666ece9..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestPacket.class
deleted file mode 100644
index d12ef33..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.class
deleted file mode 100644
index 8f17ea6..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestServerListPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestServerListPacket.class
deleted file mode 100644
index 87f33fe..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/request/RequestServerListPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.class
deleted file mode 100644
index 4a3b78d..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseBuildListPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseBuildListPacket.class
deleted file mode 100644
index 6da4d9c..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseBuildListPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.class
deleted file mode 100644
index 6179f8d..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.class
deleted file mode 100644
index deea293..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponsePacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponsePacket.class
deleted file mode 100644
index 67f92f4..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponsePacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.class
deleted file mode 100644
index 9332ae9..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseServerListPacket.class b/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseServerListPacket.class
deleted file mode 100644
index 98c5cd5..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/network/packets/response/ResponseServerListPacket.class and /dev/null differ
diff --git a/lightspeed-common/out/production/classes/com/projectswg/common/utilities/TimeFormatUtilities.class b/lightspeed-common/out/production/classes/com/projectswg/common/utilities/TimeFormatUtilities.class
deleted file mode 100644
index b511b35..0000000
Binary files a/lightspeed-common/out/production/classes/com/projectswg/common/utilities/TimeFormatUtilities.class and /dev/null differ
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/PacketType.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/LightspeedPacketType.java
similarity index 98%
rename from lightspeed-common/src/main/java/com/projectswg/common/network/packets/PacketType.java
rename to lightspeed-common/src/main/java/com/projectswg/common/network/packets/LightspeedPacketType.java
index f6a39fc..f6b5139 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/PacketType.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/LightspeedPacketType.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets;
-public enum PacketType {
+public enum LightspeedPacketType {
// CONNECTION
AUTHENTICATION,
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/Packet.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/Packet.java
index 05fbfd9..6d32c9e 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/Packet.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/Packet.java
@@ -39,9 +39,9 @@ public class Packet {
private static final String TYPE = "type";
private final JSONObject json;
- private final PacketType type;
+ private final LightspeedPacketType type;
- public Packet(JSONObject json, PacketType type) {
+ public Packet(JSONObject json, LightspeedPacketType type) {
this.json = json;
this.type = type;
if (!json.containsKey(TYPE))
@@ -50,7 +50,7 @@ public class Packet {
throw new IllegalArgumentException("JSON type does not match packet type!");
}
- public Packet(PacketType type) {
+ public Packet(LightspeedPacketType type) {
this.json = new JSONObject();
this.type = type;
getJSON().put(TYPE, type.name());
@@ -60,7 +60,7 @@ public class Packet {
return json;
}
- public PacketType getType() {
+ public LightspeedPacketType getType() {
return type;
}
@@ -69,13 +69,13 @@ public class Packet {
return "LightspeedPacket["+type+"]";
}
- public static JSONObject createPacketJson(PacketType type) {
+ public static JSONObject createPacketJson(LightspeedPacketType type) {
JSONObject json = new JSONObject();
json.put("type", type.name());
return json;
}
- public static Packet inflate(JSONObject json, PacketType type) {
+ public static Packet inflate(JSONObject json, LightspeedPacketType type) {
switch (type) {
case AUTHENTICATION: return new AuthenticatePacket(json);
case POST_BUILD: return new PostBuildPacket(json);
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/AuthenticatePacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/AuthenticatePacket.java
index e717878..eef0760 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/AuthenticatePacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/AuthenticatePacket.java
@@ -27,17 +27,17 @@
***********************************************************************************/
package com.projectswg.common.network.packets.connection;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class AuthenticatePacket extends ConnectionPacket {
public AuthenticatePacket(JSONObject json) {
- super(json, PacketType.AUTHENTICATION);
+ super(json, LightspeedPacketType.AUTHENTICATION);
}
public AuthenticatePacket(String user, String pass) {
- super(PacketType.AUTHENTICATION);
+ super(LightspeedPacketType.AUTHENTICATION);
getJSON().put("user", user);
getJSON().put("pass", pass);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/ConnectionPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/ConnectionPacket.java
index b735344..45753b1 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/ConnectionPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/connection/ConnectionPacket.java
@@ -28,16 +28,16 @@
package com.projectswg.common.network.packets.connection;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public abstract class ConnectionPacket extends Packet {
- public ConnectionPacket(JSONObject json, PacketType type) {
+ public ConnectionPacket(JSONObject json, LightspeedPacketType type) {
super(json, type);
}
- public ConnectionPacket(PacketType type) {
+ public ConnectionPacket(LightspeedPacketType type) {
super(type);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostBuildPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostBuildPacket.java
index 63d5414..7e217f7 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostBuildPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostBuildPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.post;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class PostBuildPacket extends PostPacket {
@@ -35,11 +35,11 @@ public class PostBuildPacket extends PostPacket {
private static final String SERVER_ID = "server_id";
public PostBuildPacket(JSONObject json) {
- super(json, PacketType.POST_BUILD);
+ super(json, LightspeedPacketType.POST_BUILD);
}
public PostBuildPacket(String serverId) {
- super(PacketType.POST_BUILD);
+ super(LightspeedPacketType.POST_BUILD);
getJSON().put(SERVER_ID, serverId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostDeployPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostDeployPacket.java
index 587d0ae..a7e69d0 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostDeployPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostDeployPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.post;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class PostDeployPacket extends PostPacket {
@@ -35,11 +35,11 @@ public class PostDeployPacket extends PostPacket {
private static final String SERVER_ID = "server_id";
public PostDeployPacket(JSONObject json) {
- super(json, PacketType.POST_DEPLOY);
+ super(json, LightspeedPacketType.POST_DEPLOY);
}
public PostDeployPacket(String serverId) {
- super(PacketType.POST_DEPLOY);
+ super(LightspeedPacketType.POST_DEPLOY);
setServerId(serverId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostPacket.java
index 175d792..f722c34 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostPacket.java
@@ -28,16 +28,16 @@
package com.projectswg.common.network.packets.post;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public abstract class PostPacket extends Packet {
- public PostPacket(JSONObject json, PacketType type) {
+ public PostPacket(JSONObject json, LightspeedPacketType type) {
super(json, type);
}
- public PostPacket(PacketType type) {
+ public PostPacket(LightspeedPacketType type) {
super(type);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostResult.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostResult.java
index 8bf7d00..063aeb0 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostResult.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostResult.java
@@ -28,7 +28,7 @@
package com.projectswg.common.network.packets.post;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class PostResult extends Packet {
@@ -36,11 +36,11 @@ public class PostResult extends Packet {
private static final String SUCCESS = "success";
public PostResult(JSONObject json) {
- super(json, PacketType.POST_RESULT);
+ super(json, LightspeedPacketType.POST_RESULT);
}
public PostResult(boolean success) {
- super(PacketType.POST_RESULT);
+ super(LightspeedPacketType.POST_RESULT);
setSuccess(success);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopBuildPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopBuildPacket.java
index 4adb986..5721140 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopBuildPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopBuildPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.post;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class PostStopBuildPacket extends PostPacket {
@@ -35,11 +35,11 @@ public class PostStopBuildPacket extends PostPacket {
private static final String SERVER_ID = "server_id";
public PostStopBuildPacket(JSONObject json) {
- super(json, PacketType.POST_STOP_BUILD);
+ super(json, LightspeedPacketType.POST_STOP_BUILD);
}
public PostStopBuildPacket(String serverId) {
- super(PacketType.POST_STOP_BUILD);
+ super(LightspeedPacketType.POST_STOP_BUILD);
setServerId(serverId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopDeployPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopDeployPacket.java
index af33cb7..6db653e 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopDeployPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/post/PostStopDeployPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.post;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class PostStopDeployPacket extends PostPacket {
@@ -35,11 +35,11 @@ public class PostStopDeployPacket extends PostPacket {
private static final String SERVER_ID = "server_id";
public PostStopDeployPacket(JSONObject json) {
- super(json, PacketType.POST_STOP_DEPLOY);
+ super(json, LightspeedPacketType.POST_STOP_DEPLOY);
}
public PostStopDeployPacket(String serverId) {
- super(PacketType.POST_STOP_DEPLOY);
+ super(LightspeedPacketType.POST_STOP_DEPLOY);
setServerId(serverId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.java
index 1c01cd3..d4a400d 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildDetailedPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.request;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class RequestBuildDetailedPacket extends RequestPacket {
@@ -35,11 +35,11 @@ public class RequestBuildDetailedPacket extends RequestPacket {
private static final String BUILD_ID = "build_id";
public RequestBuildDetailedPacket(JSONObject json) {
- super(json, PacketType.REQUEST_BUILD_DETAILED);
+ super(json, LightspeedPacketType.REQUEST_BUILD_DETAILED);
}
public RequestBuildDetailedPacket(long buildId) {
- super(PacketType.REQUEST_BUILD_DETAILED);
+ super(LightspeedPacketType.REQUEST_BUILD_DETAILED);
setBuildId(buildId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildListPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildListPacket.java
index 2369c51..f3652a0 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildListPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestBuildListPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.request;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class RequestBuildListPacket extends RequestPacket {
@@ -35,11 +35,11 @@ public class RequestBuildListPacket extends RequestPacket {
private static final String SERVER_ID = "server_id";
public RequestBuildListPacket(JSONObject json) {
- super(json, PacketType.REQUEST_BUILD_LIST);
+ super(json, LightspeedPacketType.REQUEST_BUILD_LIST);
}
public RequestBuildListPacket(String serverId) {
- super(PacketType.REQUEST_BUILD_LIST);
+ super(LightspeedPacketType.REQUEST_BUILD_LIST);
setServerId(serverId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.java
index 38b4756..34113fd 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentDetailedPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.request;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class RequestDeploymentDetailedPacket extends RequestPacket {
@@ -35,11 +35,11 @@ public class RequestDeploymentDetailedPacket extends RequestPacket {
private static final String DEPLOYMENT_ID = "deployment_id";
public RequestDeploymentDetailedPacket(JSONObject json) {
- super(json, PacketType.REQUEST_DEPLOYMENT_DETAILED);
+ super(json, LightspeedPacketType.REQUEST_DEPLOYMENT_DETAILED);
}
public RequestDeploymentDetailedPacket(long deploymentId) {
- super(PacketType.REQUEST_DEPLOYMENT_DETAILED);
+ super(LightspeedPacketType.REQUEST_DEPLOYMENT_DETAILED);
setDeploymentId(deploymentId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.java
index c519c26..e0d1632 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestDeploymentListPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.request;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class RequestDeploymentListPacket extends RequestPacket {
@@ -35,11 +35,11 @@ public class RequestDeploymentListPacket extends RequestPacket {
private static final String SERVER_ID = "server_id";
public RequestDeploymentListPacket(JSONObject json) {
- super(json, PacketType.REQUEST_DEPLOYMENT_LIST);
+ super(json, LightspeedPacketType.REQUEST_DEPLOYMENT_LIST);
}
public RequestDeploymentListPacket(String serverId) {
- super(PacketType.REQUEST_DEPLOYMENT_LIST);
+ super(LightspeedPacketType.REQUEST_DEPLOYMENT_LIST);
setServerId(serverId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestPacket.java
index 6d105d7..ed32d4e 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestPacket.java
@@ -28,16 +28,16 @@
package com.projectswg.common.network.packets.request;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public abstract class RequestPacket extends Packet {
- public RequestPacket(JSONObject json, PacketType type) {
+ public RequestPacket(JSONObject json, LightspeedPacketType type) {
super(json, type);
}
- public RequestPacket(PacketType type) {
+ public RequestPacket(LightspeedPacketType type) {
super(type);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.java
index 7e91cab..85a1cdb 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerDetailedPacket.java
@@ -27,7 +27,7 @@
***********************************************************************************/
package com.projectswg.common.network.packets.request;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class RequestServerDetailedPacket extends RequestPacket {
@@ -35,11 +35,11 @@ public class RequestServerDetailedPacket extends RequestPacket {
private static final String SERVER_ID = "server_id";
public RequestServerDetailedPacket(JSONObject json) {
- super(json, PacketType.REQUEST_SERVER_DETAILED);
+ super(json, LightspeedPacketType.REQUEST_SERVER_DETAILED);
}
public RequestServerDetailedPacket(String serverId) {
- super(PacketType.REQUEST_SERVER_DETAILED);
+ super(LightspeedPacketType.REQUEST_SERVER_DETAILED);
setServerId(serverId);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerListPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerListPacket.java
index b53a4e0..70810c7 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerListPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/request/RequestServerListPacket.java
@@ -27,17 +27,17 @@
***********************************************************************************/
package com.projectswg.common.network.packets.request;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class RequestServerListPacket extends RequestPacket {
public RequestServerListPacket(JSONObject json) {
- super(json, PacketType.REQUEST_SERVER_LIST);
+ super(json, LightspeedPacketType.REQUEST_SERVER_LIST);
}
public RequestServerListPacket() {
- super(PacketType.REQUEST_SERVER_LIST);
+ super(LightspeedPacketType.REQUEST_SERVER_LIST);
}
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.java
index 7d92cba..ab58fb9 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildDetailedPacket.java
@@ -31,7 +31,7 @@ import com.projectswg.common.data.SharedBuildData;
import com.projectswg.common.data.SharedBuildData.BuildState;
import com.projectswg.common.data.SharedServerData;
import com.projectswg.common.data.TestDetails;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class ResponseBuildDetailedPacket extends ResponsePacket {
@@ -47,11 +47,11 @@ public class ResponseBuildDetailedPacket extends ResponsePacket {
private static final String TEST_TOTAL = "test_total";
public ResponseBuildDetailedPacket(JSONObject json) {
- super(json, PacketType.RESPONSE_BUILD_DETAILED);
+ super(json, LightspeedPacketType.RESPONSE_BUILD_DETAILED);
}
public ResponseBuildDetailedPacket(SharedBuildData buildData) {
- super(PacketType.RESPONSE_BUILD_DETAILED);
+ super(LightspeedPacketType.RESPONSE_BUILD_DETAILED);
setBuildData(buildData);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildListPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildListPacket.java
index 51e0b05..aa21a8d 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildListPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseBuildListPacket.java
@@ -29,7 +29,7 @@ package com.projectswg.common.network.packets.response;
import com.projectswg.common.data.SharedBuildData;
import com.projectswg.common.data.SharedServerData;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONArray;
import me.joshlarson.json.JSONObject;
@@ -42,11 +42,11 @@ public class ResponseBuildListPacket extends ResponsePacket {
private static final String BUILD_LIST = "build_list";
public ResponseBuildListPacket(JSONObject json) {
- super(json, PacketType.RESPONSE_BUILD_LIST);
+ super(json, LightspeedPacketType.RESPONSE_BUILD_LIST);
}
public ResponseBuildListPacket(String serverId, List buildList) {
- super(PacketType.RESPONSE_BUILD_LIST);
+ super(LightspeedPacketType.RESPONSE_BUILD_LIST);
setServerId(serverId);
setBuildList(buildList);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.java
index fdcce60..45a0b5c 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentDetailedPacket.java
@@ -31,7 +31,7 @@ import com.projectswg.common.data.SharedBuildData;
import com.projectswg.common.data.SharedDeploymentData;
import com.projectswg.common.data.SharedDeploymentData.DeploymentState;
import com.projectswg.common.data.SharedServerData;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class ResponseDeploymentDetailedPacket extends ResponsePacket {
@@ -45,11 +45,11 @@ public class ResponseDeploymentDetailedPacket extends ResponsePacket {
private static final String STATE = "state";
public ResponseDeploymentDetailedPacket(JSONObject json) {
- super(json, PacketType.RESPONSE_DEPLOYMENT_DETAILED);
+ super(json, LightspeedPacketType.RESPONSE_DEPLOYMENT_DETAILED);
}
public ResponseDeploymentDetailedPacket(SharedDeploymentData deployment) {
- super(PacketType.RESPONSE_DEPLOYMENT_DETAILED);
+ super(LightspeedPacketType.RESPONSE_DEPLOYMENT_DETAILED);
setDeploymentData(deployment);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.java
index c4e5aee..4ad9fc7 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseDeploymentListPacket.java
@@ -30,7 +30,7 @@ package com.projectswg.common.network.packets.response;
import com.projectswg.common.data.SharedBuildData;
import com.projectswg.common.data.SharedDeploymentData;
import com.projectswg.common.data.SharedServerData;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONArray;
import me.joshlarson.json.JSONObject;
@@ -45,11 +45,11 @@ public class ResponseDeploymentListPacket extends ResponsePacket {
private static final String DEPLOYMENT_LIST = "deployment_list";
public ResponseDeploymentListPacket(JSONObject json) {
- super(json, PacketType.RESPONSE_DEPLOYMENT_LIST);
+ super(json, LightspeedPacketType.RESPONSE_DEPLOYMENT_LIST);
}
public ResponseDeploymentListPacket(String serverId, List deploymentList) {
- super(PacketType.RESPONSE_DEPLOYMENT_LIST);
+ super(LightspeedPacketType.RESPONSE_DEPLOYMENT_LIST);
setServerId(serverId);
setDeploymentList(deploymentList);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponsePacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponsePacket.java
index 62642fd..caf47aa 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponsePacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponsePacket.java
@@ -28,16 +28,16 @@
package com.projectswg.common.network.packets.response;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public abstract class ResponsePacket extends Packet {
- public ResponsePacket(JSONObject json, PacketType type) {
+ public ResponsePacket(JSONObject json, LightspeedPacketType type) {
super(json, type);
}
- public ResponsePacket(PacketType type) {
+ public ResponsePacket(LightspeedPacketType type) {
super(type);
}
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.java
index 76b53ad..8bef72d 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerDetailedPacket.java
@@ -28,7 +28,7 @@
package com.projectswg.common.network.packets.response;
import com.projectswg.common.data.SharedServerData;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public class ResponseServerDetailedPacket extends ResponsePacket {
@@ -38,16 +38,16 @@ public class ResponseServerDetailedPacket extends ResponsePacket {
private static final String JVM_ARGS = "jvm_arguments";
public ResponseServerDetailedPacket(JSONObject json) {
- super(json, PacketType.RESPONSE_SERVER_DETAILED);
+ super(json, LightspeedPacketType.RESPONSE_SERVER_DETAILED);
}
public ResponseServerDetailedPacket(SharedServerData serverData) {
- super(PacketType.RESPONSE_SERVER_DETAILED);
+ super(LightspeedPacketType.RESPONSE_SERVER_DETAILED);
setServer(serverData);
}
public ResponseServerDetailedPacket(String serverId, String dir, String jvmArguments) {
- super(PacketType.RESPONSE_SERVER_DETAILED);
+ super(LightspeedPacketType.RESPONSE_SERVER_DETAILED);
setServerId(serverId);
setDirectory(dir);
setJvmArguments(jvmArguments);
diff --git a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerListPacket.java b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerListPacket.java
index b9f7c85..461bf20 100644
--- a/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerListPacket.java
+++ b/lightspeed-common/src/main/java/com/projectswg/common/network/packets/response/ResponseServerListPacket.java
@@ -28,7 +28,7 @@
package com.projectswg.common.network.packets.response;
import com.projectswg.common.data.SharedServerData;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONArray;
import me.joshlarson.json.JSONObject;
@@ -40,11 +40,11 @@ public class ResponseServerListPacket extends ResponsePacket {
private static final String SERVER_LIST = "server_list";
public ResponseServerListPacket(JSONObject json) {
- super(json, PacketType.RESPONSE_SERVER_LIST);
+ super(json, LightspeedPacketType.RESPONSE_SERVER_LIST);
}
public ResponseServerListPacket(List serverList) {
- super(PacketType.RESPONSE_SERVER_LIST);
+ super(LightspeedPacketType.RESPONSE_SERVER_LIST);
setServerList(serverList);
}
diff --git a/lightspeed-server/build.gradle b/lightspeed-server/build.gradle
index 0ff67b0..3325b8d 100644
--- a/lightspeed-server/build.gradle
+++ b/lightspeed-server/build.gradle
@@ -3,12 +3,12 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2'
+ classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
}
}
plugins {
- id 'com.github.johnrengelman.shadow' version '2.0.2'
+ id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'application'
id 'java'
id 'idea'
@@ -18,8 +18,8 @@ version '1.0.0'
mainClassName = 'com.projectswg.lightspeed.Lightspeed'
-sourceCompatibility = 1.9
-targetCompatibility = 1.9
+sourceCompatibility = 10
+targetCompatibility = 10
repositories {
jcenter()
@@ -49,6 +49,3 @@ shadowJar {
version = null
}
-task wrapper(type: Wrapper) {
- gradleVersion = "4.4"
-}
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$1.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$1.class
deleted file mode 100644
index 67953e9..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$1.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$BoundRunner.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$BoundRunner.class
deleted file mode 100644
index 878a3fd..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$BoundRunner.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$Session.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$Session.class
deleted file mode 100644
index 29161a1..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$Session.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$WebSocketHandler.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$WebSocketHandler.class
deleted file mode 100644
index 93efcfb..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService$WebSocketHandler.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService.class
deleted file mode 100644
index 59e5403..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/CommunicationService.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/DeploymentService$Deployment.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/DeploymentService$Deployment.class
deleted file mode 100644
index 85405fb..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/DeploymentService$Deployment.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/DeploymentService.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/DeploymentService.class
deleted file mode 100644
index 1d7d77d..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/DeploymentService.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/Lightspeed.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/Lightspeed.class
deleted file mode 100644
index b7ee069..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/Lightspeed.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/LightspeedMainManager.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/LightspeedMainManager.class
deleted file mode 100644
index 018d2e7..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/LightspeedMainManager.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/StarshipProcess.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/StarshipProcess.class
deleted file mode 100644
index fced1b2..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/StarshipProcess.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/communication/HttpResponder.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/communication/HttpResponder.class
deleted file mode 100644
index 6becb36..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/communication/HttpResponder.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/control/LightspeedManager.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/control/LightspeedManager.class
deleted file mode 100644
index 3ccc470..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/control/LightspeedManager.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/control/LightspeedService.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/control/LightspeedService.class
deleted file mode 100644
index b3c9613..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/control/LightspeedService.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildMethod.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildMethod.class
deleted file mode 100644
index dc296f1..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildMethod.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService$Build.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService$Build.class
deleted file mode 100644
index d96e983..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService$Build.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService$BuildInstallationCallback.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService$BuildInstallationCallback.class
deleted file mode 100644
index 8243fa2..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService$BuildInstallationCallback.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService.class
deleted file mode 100644
index 08746c9..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/BuildService.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/JavaBuildMethod.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/JavaBuildMethod.class
deleted file mode 100644
index 5059a1b..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/JavaBuildMethod.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/MavenInterface.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/MavenInterface.class
deleted file mode 100644
index efb377e..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/MavenInterface.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/ServerBuildData$InstallationCallback.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/ServerBuildData$InstallationCallback.class
deleted file mode 100644
index 2e549d4..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/ServerBuildData$InstallationCallback.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/ServerBuildData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/ServerBuildData.class
deleted file mode 100644
index f8326f5..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/ServerBuildData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLConstants.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLConstants.class
deleted file mode 100644
index dd9e84e..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLConstants.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLConnection.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLConnection.class
deleted file mode 100644
index f016c00..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLConnection.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandler.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandler.class
deleted file mode 100644
index 702bfc3..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandler.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandlerFactory.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandlerFactory.class
deleted file mode 100644
index 8caa4f1..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandlerFactory.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$1.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$1.class
deleted file mode 100644
index 81ec08b..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$1.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$ManifestInfo.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$ManifestInfo.class
deleted file mode 100644
index c496d9f..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$ManifestInfo.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader.class
deleted file mode 100644
index 8e3902c..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/CustomJavaCommon.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/CustomJavaCommon.class
deleted file mode 100644
index c7ebf72..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/CustomJavaCommon.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/CustomJavaException.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/CustomJavaException.class
deleted file mode 100644
index 43f792b..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/CustomJavaException.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/RepoInstaller.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/RepoInstaller.class
deleted file mode 100644
index 061eada..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/build/java_builder/RepoInstaller.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/deployment/ServerDeploymentData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/deployment/ServerDeploymentData.class
deleted file mode 100644
index bcfc00e..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/deployment/ServerDeploymentData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/BackendData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/BackendData.class
deleted file mode 100644
index 9ae5416..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/BackendData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/ConfigFile.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/ConfigFile.class
deleted file mode 100644
index d1a6846..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/ConfigFile.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/DataManager.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/DataManager.class
deleted file mode 100644
index 69082cd..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/DataManager.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/HeavyweightBackendData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/HeavyweightBackendData.class
deleted file mode 100644
index f6ee245..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/HeavyweightBackendData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/HeavyweightDataManager.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/HeavyweightDataManager.class
deleted file mode 100644
index 21dd8c6..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/HeavyweightDataManager.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightBackendData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightBackendData.class
deleted file mode 100644
index 67b952e..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightBackendData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightConfig.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightConfig.class
deleted file mode 100644
index 1872502..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightConfig.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightDataManager.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightDataManager.class
deleted file mode 100644
index d516ed1..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/info/LightweightDataManager.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/server/ServerServerData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/server/ServerServerData.class
deleted file mode 100644
index b168f23..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/server/ServerServerData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/server/ServerService.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/server/ServerService.class
deleted file mode 100644
index d0320cf..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/server/ServerService.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/BuildHistoryTable.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/BuildHistoryTable.class
deleted file mode 100644
index 5967ed6..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/BuildHistoryTable.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/DeploymentTable.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/DeploymentTable.class
deleted file mode 100644
index a846b25..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/DeploymentTable.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData$1.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData$1.class
deleted file mode 100644
index e5b181e..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData$1.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData$BuildInformationBuilder.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData$BuildInformationBuilder.class
deleted file mode 100644
index 4d56e29..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData$BuildInformationBuilder.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData.class
deleted file mode 100644
index 7ab29da..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLBuildData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData$1.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData$1.class
deleted file mode 100644
index 04841f7..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData$1.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData$DeploymentInformationBuilder.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData$DeploymentInformationBuilder.class
deleted file mode 100644
index f7f160d..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData$DeploymentInformationBuilder.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData.class
deleted file mode 100644
index 78dc147..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLDeploymentData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLServerData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLServerData.class
deleted file mode 100644
index afe49c0..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/SQLServerData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/ServerTable.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/ServerTable.class
deleted file mode 100644
index 313a120..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/data/sql/ServerTable.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/git/GitInterface.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/git/GitInterface.class
deleted file mode 100644
index cb2f457..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/git/GitInterface.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUI.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUI.class
deleted file mode 100644
index 6fa18de..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUI.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUIService$GUIData.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUIService$GUIData.class
deleted file mode 100644
index 9749dfe..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUIService$GUIData.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUIService.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUIService.class
deleted file mode 100644
index a37278e..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/GUIService.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$1.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$1.class
deleted file mode 100644
index 99b06e0..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$1.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$ServerBox.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$ServerBox.class
deleted file mode 100644
index d2f48e4..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$ServerBox.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView.class
deleted file mode 100644
index d09a19a..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/LaunchStarshipIntent.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/LaunchStarshipIntent.class
deleted file mode 100644
index 91609ce..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/LaunchStarshipIntent.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/PrepareStarshipIntent.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/PrepareStarshipIntent.class
deleted file mode 100644
index 323f287..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/PrepareStarshipIntent.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.class
deleted file mode 100644
index d8a4259..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/sequenced/Sequenced.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/sequenced/Sequenced.class
deleted file mode 100644
index ecf3bee..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/sequenced/Sequenced.class and /dev/null differ
diff --git a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/sequenced/SequencedStarter.class b/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/sequenced/SequencedStarter.class
deleted file mode 100644
index a23954b..0000000
Binary files a/lightspeed-server/build/classes/java/main/com/projectswg/lightspeed/sequenced/SequencedStarter.class and /dev/null differ
diff --git a/lightspeed-server/build/libs/Lightspeed.jar b/lightspeed-server/build/libs/Lightspeed.jar
deleted file mode 100644
index e390dc3..0000000
Binary files a/lightspeed-server/build/libs/Lightspeed.jar and /dev/null differ
diff --git a/lightspeed-server/build/tmp/shadowJar/MANIFEST.MF b/lightspeed-server/build/tmp/shadowJar/MANIFEST.MF
deleted file mode 100644
index ff9bd59..0000000
--- a/lightspeed-server/build/tmp/shadowJar/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: com.projectswg.lightspeed.Lightspeed
-
diff --git a/lightspeed-server/gradle/wrapper/gradle-wrapper.jar b/lightspeed-server/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 99340b4..0000000
Binary files a/lightspeed-server/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/lightspeed-server/gradle/wrapper/gradle-wrapper.properties b/lightspeed-server/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 58aa461..0000000
--- a/lightspeed-server/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,32 +0,0 @@
-#####################################################################################
-# Copyright (c) 2018 /// Project SWG /// www.projectswg.com #
-# #
-# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on #
-# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. #
-# Our goal is to create an emulator which will provide a server for players to #
-# continue playing a game similar to the one they used to play. We are basing #
-# it on the final publish of the game prior to end-game events. #
-# #
-# This file is part of Lightspeed. #
-# #
-# -------------------------------------------------------------------------------- #
-# #
-# Lightspeed is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# Lightspeed is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with Lightspeed. If not, see . #
-# #
-#####################################################################################
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStorePath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$1.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$1.class
deleted file mode 100644
index 67953e9..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$1.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$BoundRunner.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$BoundRunner.class
deleted file mode 100644
index 878a3fd..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$BoundRunner.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$Session.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$Session.class
deleted file mode 100644
index 29161a1..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$Session.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$WebSocketHandler.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$WebSocketHandler.class
deleted file mode 100644
index 93efcfb..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService$WebSocketHandler.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService.class
deleted file mode 100644
index 59e5403..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/CommunicationService.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/DeploymentService$Deployment.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/DeploymentService$Deployment.class
deleted file mode 100644
index 85405fb..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/DeploymentService$Deployment.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/DeploymentService.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/DeploymentService.class
deleted file mode 100644
index 1d7d77d..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/DeploymentService.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/GitListenerService.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/GitListenerService.class
deleted file mode 100644
index b99cc77..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/GitListenerService.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/Lightspeed.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/Lightspeed.class
deleted file mode 100644
index b7ee069..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/Lightspeed.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/LightspeedMainManager.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/LightspeedMainManager.class
deleted file mode 100644
index 97835d9..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/LightspeedMainManager.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/StarshipProcess.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/StarshipProcess.class
deleted file mode 100644
index fced1b2..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/StarshipProcess.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/communication/HttpResponder.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/communication/HttpResponder.class
deleted file mode 100644
index 6becb36..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/communication/HttpResponder.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/control/LightspeedManager.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/control/LightspeedManager.class
deleted file mode 100644
index 3ccc470..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/control/LightspeedManager.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/control/LightspeedService.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/control/LightspeedService.class
deleted file mode 100644
index b3c9613..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/control/LightspeedService.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildMethod.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildMethod.class
deleted file mode 100644
index dc296f1..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildMethod.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService$Build.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService$Build.class
deleted file mode 100644
index d96e983..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService$Build.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService$BuildInstallationCallback.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService$BuildInstallationCallback.class
deleted file mode 100644
index 8243fa2..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService$BuildInstallationCallback.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService.class
deleted file mode 100644
index 08746c9..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/BuildService.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/JavaBuildMethod.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/JavaBuildMethod.class
deleted file mode 100644
index 5059a1b..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/JavaBuildMethod.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/MavenInterface.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/MavenInterface.class
deleted file mode 100644
index efb377e..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/MavenInterface.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/ServerBuildData$InstallationCallback.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/ServerBuildData$InstallationCallback.class
deleted file mode 100644
index 2e549d4..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/ServerBuildData$InstallationCallback.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/ServerBuildData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/ServerBuildData.class
deleted file mode 100644
index f8326f5..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/ServerBuildData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLConstants.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLConstants.class
deleted file mode 100644
index dd9e84e..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLConstants.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLConnection.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLConnection.class
deleted file mode 100644
index f016c00..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLConnection.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandler.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandler.class
deleted file mode 100644
index 702bfc3..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandler.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandlerFactory.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandlerFactory.class
deleted file mode 100644
index 8caa4f1..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LJLURLStreamHandlerFactory.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$1.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$1.class
deleted file mode 100644
index 81ec08b..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$1.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$ManifestInfo.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$ManifestInfo.class
deleted file mode 100644
index c496d9f..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader$ManifestInfo.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader.class
deleted file mode 100644
index 8e3902c..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/jar_loader/LightspeedJarLoader.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/CustomJavaCommon.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/CustomJavaCommon.class
deleted file mode 100644
index c7ebf72..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/CustomJavaCommon.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/CustomJavaException.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/CustomJavaException.class
deleted file mode 100644
index 43f792b..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/CustomJavaException.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/RepoInstaller.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/RepoInstaller.class
deleted file mode 100644
index 061eada..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/build/java_builder/RepoInstaller.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/deployment/ServerDeploymentData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/deployment/ServerDeploymentData.class
deleted file mode 100644
index bcfc00e..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/deployment/ServerDeploymentData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/BackendData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/BackendData.class
deleted file mode 100644
index 9ae5416..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/BackendData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/ConfigFile.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/ConfigFile.class
deleted file mode 100644
index d1a6846..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/ConfigFile.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/DataManager.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/DataManager.class
deleted file mode 100644
index 69082cd..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/DataManager.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/HeavyweightBackendData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/HeavyweightBackendData.class
deleted file mode 100644
index f6ee245..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/HeavyweightBackendData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/HeavyweightDataManager.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/HeavyweightDataManager.class
deleted file mode 100644
index 21dd8c6..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/HeavyweightDataManager.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightBackendData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightBackendData.class
deleted file mode 100644
index 67b952e..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightBackendData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightConfig.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightConfig.class
deleted file mode 100644
index 1872502..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightConfig.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightDataManager.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightDataManager.class
deleted file mode 100644
index d516ed1..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/info/LightweightDataManager.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/server/ServerServerData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/server/ServerServerData.class
deleted file mode 100644
index b168f23..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/server/ServerServerData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/server/ServerService.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/server/ServerService.class
deleted file mode 100644
index d0320cf..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/server/ServerService.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/BuildHistoryTable.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/BuildHistoryTable.class
deleted file mode 100644
index 5967ed6..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/BuildHistoryTable.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/DeploymentTable.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/DeploymentTable.class
deleted file mode 100644
index a846b25..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/DeploymentTable.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData$1.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData$1.class
deleted file mode 100644
index e5b181e..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData$1.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData$BuildInformationBuilder.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData$BuildInformationBuilder.class
deleted file mode 100644
index 4d56e29..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData$BuildInformationBuilder.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData.class
deleted file mode 100644
index 7ab29da..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLBuildData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData$1.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData$1.class
deleted file mode 100644
index 04841f7..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData$1.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData$DeploymentInformationBuilder.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData$DeploymentInformationBuilder.class
deleted file mode 100644
index f7f160d..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData$DeploymentInformationBuilder.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData.class
deleted file mode 100644
index 78dc147..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLDeploymentData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLServerData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLServerData.class
deleted file mode 100644
index afe49c0..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/SQLServerData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/ServerTable.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/ServerTable.class
deleted file mode 100644
index 313a120..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/data/sql/ServerTable.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface$1.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface$1.class
deleted file mode 100644
index 8962111..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface$1.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface$CustomProgressMonitor.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface$CustomProgressMonitor.class
deleted file mode 100644
index 25a8faf..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface$CustomProgressMonitor.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface.class
deleted file mode 100644
index c2252f3..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/git/GitInterface.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUI.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUI.class
deleted file mode 100644
index 6fa18de..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUI.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUIService$GUIData.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUIService$GUIData.class
deleted file mode 100644
index 9749dfe..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUIService$GUIData.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUIService.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUIService.class
deleted file mode 100644
index a37278e..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/GUIService.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$1.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$1.class
deleted file mode 100644
index 99b06e0..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$1.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$ServerBox.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$ServerBox.class
deleted file mode 100644
index d2f48e4..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView$ServerBox.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView.class
deleted file mode 100644
index d09a19a..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/gui/LightspeedServerPrimaryView.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/LaunchStarshipIntent.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/LaunchStarshipIntent.class
deleted file mode 100644
index 91609ce..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/LaunchStarshipIntent.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/PrepareStarshipIntent.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/PrepareStarshipIntent.class
deleted file mode 100644
index 323f287..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/PrepareStarshipIntent.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.class
deleted file mode 100644
index d8a4259..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/sequenced/Sequenced.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/sequenced/Sequenced.class
deleted file mode 100644
index ecf3bee..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/sequenced/Sequenced.class and /dev/null differ
diff --git a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/sequenced/SequencedStarter.class b/lightspeed-server/out/production/classes/com/projectswg/lightspeed/sequenced/SequencedStarter.class
deleted file mode 100644
index a23954b..0000000
Binary files a/lightspeed-server/out/production/classes/com/projectswg/lightspeed/sequenced/SequencedStarter.class and /dev/null differ
diff --git a/lightspeed-server/src/main/java/com/projectswg/lightspeed/CommunicationService.java b/lightspeed-server/src/main/java/com/projectswg/lightspeed/CommunicationService.java
index 311539b..b274d85 100644
--- a/lightspeed-server/src/main/java/com/projectswg/lightspeed/CommunicationService.java
+++ b/lightspeed-server/src/main/java/com/projectswg/lightspeed/CommunicationService.java
@@ -35,7 +35,7 @@ import com.projectswg.common.data.info.Config;
import com.projectswg.common.debug.Assert;
import com.projectswg.common.debug.Log;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import com.projectswg.lightspeed.communication.HttpResponder;
import com.projectswg.lightspeed.control.LightspeedService;
import com.projectswg.lightspeed.data.info.ConfigFile;
@@ -68,7 +68,7 @@ import java.util.concurrent.locks.ReentrantReadWriteLock;
public class CommunicationService extends LightspeedService {
private final JSONWebSocketServer httpServer;
- private final Map responders;
+ private final Map responders;
private final PswgBasicScheduledThread userTableUpdater;
private final BoundRunner runner;
private final CsvTable users;
@@ -269,7 +269,7 @@ public class CommunicationService extends LightspeedService {
@Override
public void onMessage(JSONWebSocketConnection socket, JSONObject object) {
Session session = (Session) socket.getUserData();
- PacketType request = PacketType.valueOf(object.getString("type"));
+ LightspeedPacketType request = LightspeedPacketType.valueOf(object.getString("type"));
Packet packet = Packet.inflate(object, request);
if (packet == null) {
Log.e("CommunicationService: Failed to inflate %s [%s]", request, object.getString("type"));
diff --git a/lightspeed-server/src/main/java/com/projectswg/lightspeed/DeploymentService.java b/lightspeed-server/src/main/java/com/projectswg/lightspeed/DeploymentService.java
index f4647c9..1c010c7 100644
--- a/lightspeed-server/src/main/java/com/projectswg/lightspeed/DeploymentService.java
+++ b/lightspeed-server/src/main/java/com/projectswg/lightspeed/DeploymentService.java
@@ -34,7 +34,7 @@ import com.projectswg.common.data.info.Config;
import com.projectswg.common.debug.Assert;
import com.projectswg.common.debug.Log;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import com.projectswg.common.network.packets.post.PostDeployPacket;
import com.projectswg.common.network.packets.post.PostResult;
import com.projectswg.common.network.packets.post.PostStopDeployPacket;
@@ -86,10 +86,10 @@ public class DeploymentService extends LightspeedService {
deploymentId.set(deployment.getId());
}
}
- new RegisterHttpListenerIntent(PacketType.POST_DEPLOY, (type, packet) -> processPostDeploy(packet)).broadcast();
- new RegisterHttpListenerIntent(PacketType.POST_STOP_DEPLOY, (type, packet) -> processStopDeployment(packet)).broadcast();
- new RegisterHttpListenerIntent(PacketType.REQUEST_DEPLOYMENT_LIST, (type, packet) -> processDeploymentList(packet)).broadcast();
- new RegisterHttpListenerIntent(PacketType.REQUEST_DEPLOYMENT_DETAILED, (type, packet) -> processDeploymentDetailed(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.POST_DEPLOY, (type, packet) -> processPostDeploy(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.POST_STOP_DEPLOY, (type, packet) -> processStopDeployment(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.REQUEST_DEPLOYMENT_LIST, (type, packet) -> processDeploymentList(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.REQUEST_DEPLOYMENT_DETAILED, (type, packet) -> processDeploymentDetailed(packet)).broadcast();
return super.initialize();
}
diff --git a/lightspeed-server/src/main/java/com/projectswg/lightspeed/communication/HttpResponder.java b/lightspeed-server/src/main/java/com/projectswg/lightspeed/communication/HttpResponder.java
index c1256a8..614ad9d 100644
--- a/lightspeed-server/src/main/java/com/projectswg/lightspeed/communication/HttpResponder.java
+++ b/lightspeed-server/src/main/java/com/projectswg/lightspeed/communication/HttpResponder.java
@@ -28,11 +28,11 @@
package com.projectswg.lightspeed.communication;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import me.joshlarson.json.JSONObject;
public interface HttpResponder {
- JSONObject request(PacketType request, Packet packet);
+ JSONObject request(LightspeedPacketType request, Packet packet);
}
diff --git a/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/build/BuildService.java b/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/build/BuildService.java
index 021d080..320865d 100644
--- a/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/build/BuildService.java
+++ b/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/build/BuildService.java
@@ -32,7 +32,7 @@ import com.projectswg.common.data.SharedBuildData.BuildState;
import com.projectswg.common.data.info.Config;
import com.projectswg.common.debug.Log;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import com.projectswg.common.network.packets.post.PostBuildPacket;
import com.projectswg.common.network.packets.post.PostResult;
import com.projectswg.common.network.packets.post.PostStopBuildPacket;
@@ -81,10 +81,10 @@ public class BuildService extends LightspeedService {
buildId.set(build.getId());
}
}
- new RegisterHttpListenerIntent(PacketType.POST_BUILD, (type, packet) -> processBuild(packet)).broadcast();
- new RegisterHttpListenerIntent(PacketType.POST_STOP_BUILD, (type, packet) -> processStopBuild(packet)).broadcast();
- new RegisterHttpListenerIntent(PacketType.REQUEST_BUILD_LIST, (type, packet) -> processBuildList(packet)).broadcast();
- new RegisterHttpListenerIntent(PacketType.REQUEST_BUILD_DETAILED, (type, packet) -> processBuildDetailed(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.POST_BUILD, (type, packet) -> processBuild(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.POST_STOP_BUILD, (type, packet) -> processStopBuild(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.REQUEST_BUILD_LIST, (type, packet) -> processBuildList(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.REQUEST_BUILD_DETAILED, (type, packet) -> processBuildDetailed(packet)).broadcast();
return super.initialize();
}
diff --git a/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/server/ServerService.java b/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/server/ServerService.java
index 9d71ced..456daa9 100644
--- a/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/server/ServerService.java
+++ b/lightspeed-server/src/main/java/com/projectswg/lightspeed/data/server/ServerService.java
@@ -31,7 +31,7 @@ import com.projectswg.common.concurrency.PswgBasicScheduledThread;
import com.projectswg.common.data.SharedServerData;
import com.projectswg.common.debug.Log;
import com.projectswg.common.network.packets.Packet;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import com.projectswg.common.network.packets.request.RequestServerDetailedPacket;
import com.projectswg.common.network.packets.response.ResponseServerDetailedPacket;
import com.projectswg.common.network.packets.response.ResponseServerListPacket;
@@ -66,8 +66,8 @@ public class ServerService extends LightspeedService {
for (ServerServerData server : servers) {
server.setLastCommit("?");
}
- new RegisterHttpListenerIntent(PacketType.REQUEST_SERVER_LIST, (type, packet) -> onRequestServerList(packet)).broadcast();
- new RegisterHttpListenerIntent(PacketType.REQUEST_SERVER_DETAILED, (type, packet) -> onRequestServerDetailed(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.REQUEST_SERVER_LIST, (type, packet) -> onRequestServerList(packet)).broadcast();
+ new RegisterHttpListenerIntent(LightspeedPacketType.REQUEST_SERVER_DETAILED, (type, packet) -> onRequestServerDetailed(packet)).broadcast();
return super.initialize();
}
diff --git a/lightspeed-server/src/main/java/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.java b/lightspeed-server/src/main/java/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.java
index a767af4..8b8bd3b 100644
--- a/lightspeed-server/src/main/java/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.java
+++ b/lightspeed-server/src/main/java/com/projectswg/lightspeed/intents/RegisterHttpListenerIntent.java
@@ -28,20 +28,20 @@
package com.projectswg.lightspeed.intents;
import com.projectswg.common.control.Intent;
-import com.projectswg.common.network.packets.PacketType;
+import com.projectswg.common.network.packets.LightspeedPacketType;
import com.projectswg.lightspeed.communication.HttpResponder;
public class RegisterHttpListenerIntent extends Intent {
- private PacketType requestType;
+ private LightspeedPacketType requestType;
private HttpResponder predicate;
- public RegisterHttpListenerIntent(PacketType requestType, HttpResponder responder) {
+ public RegisterHttpListenerIntent(LightspeedPacketType requestType, HttpResponder responder) {
setRequestType(requestType);
setHttpResponder(responder);
}
- public PacketType getRequestType() {
+ public LightspeedPacketType getRequestType() {
return requestType;
}
@@ -49,7 +49,7 @@ public class RegisterHttpListenerIntent extends Intent {
return predicate;
}
- public void setRequestType(PacketType requestType) {
+ public void setRequestType(LightspeedPacketType requestType) {
this.requestType = requestType;
}
diff --git a/pswgcommon b/pswgcommon
new file mode 160000
index 0000000..e2532b3
--- /dev/null
+++ b/pswgcommon
@@ -0,0 +1 @@
+Subproject commit e2532b34eda75626a06ace134211bd19c3ccbde5
diff --git a/pswgcommonfx b/pswgcommonfx
new file mode 160000
index 0000000..20f62b5
--- /dev/null
+++ b/pswgcommonfx
@@ -0,0 +1 @@
+Subproject commit 20f62b5b1080aef6a722f736c5b6252da046087d