Renamed lisene.yml to LICENSE and changed references (#610)

* Removed old license files.

* Added new license file (same contents as the old one(s)).

* Removed references to the old license files in Maven files.

* Referenced the new license file in all Java files.
This commit is contained in:
Argetan 2018-06-12 20:28:40 +02:00 committed by Rsl1122
parent 7f58fff786
commit fbe3f4d172
215 changed files with 615 additions and 622 deletions

View File

@ -21,9 +21,6 @@
<include>**/*.css</include> <include>**/*.css</include>
<include>locale/*.txt</include> <include>locale/*.txt</include>
</includes> </includes>
<excludes>
<exclude>licence.yml</exclude>
</excludes>
</resource> </resource>
</resources> </resources>
<finalName>${project.name}</finalName> <finalName>${project.name}</finalName>

View File

@ -150,9 +150,6 @@
<include>**/*.css</include> <include>**/*.css</include>
<include>locale/*.txt</include> <include>locale/*.txt</include>
</includes> </includes>
<excludes>
<exclude>licence.yml</exclude>
</excludes>
</resource> </resource>
</resources> </resources>
<plugins> <plugins>
@ -268,4 +265,4 @@
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.jacoco.reportPaths>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPaths> <sonar.jacoco.reportPaths>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPaths>
</properties> </properties>
</project> </project>

View File

@ -3,7 +3,7 @@
* Copyright (C) 2017 Risto Lahtela / Rsl1122 * Copyright (C) 2017 Risto Lahtela / Rsl1122
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the Plan License. (licence.yml) * it under the terms of the Plan License. (LICENSE)
* Modified software can only be redistributed if allowed in the licence. * Modified software can only be redistributed if allowed in the licence.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
@ -15,7 +15,7 @@
* along with this program. * along with this program.
* If not it should be visible on the distribution page. * If not it should be visible on the distribution page.
* Or here * Or here
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/licence.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan; package com.djrapitops.plan;

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan; package com.djrapitops.plan;
@ -95,4 +95,4 @@ public class PlanBungee extends BungeePlugin implements PlanPlugin {
public boolean isReloading() { public boolean isReloading() {
return reloading; return reloading;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan; package com.djrapitops.plan;
@ -60,4 +60,4 @@ public interface PlanPlugin extends IPlugin {
@Override @Override
boolean isReloading(); boolean isReloading();
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan; package com.djrapitops.plan;
@ -107,4 +107,4 @@ public class ShutdownHook extends Thread {
} }
activeSessions.clear(); activeSessions.clear();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api; package com.djrapitops.plan.api;
@ -37,4 +37,4 @@ public class BungeeAPI extends CommonAPI {
public FetchOperations fetchFromPlanDB() { public FetchOperations fetchFromPlanDB() {
return bungeeSystem.getDatabaseSystem().getActiveDatabase().fetch(); return bungeeSystem.getDatabaseSystem().getActiveDatabase().fetch();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api; package com.djrapitops.plan.api;
@ -44,4 +44,4 @@ public abstract class CommonAPI implements PlanAPI {
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api; package com.djrapitops.plan.api;
@ -35,4 +35,4 @@ public interface PlanAPI {
Map<UUID, String> getKnownPlayerNames(); Map<UUID, String> getKnownPlayerNames();
FetchOperations fetchFromPlanDB(); FetchOperations fetchFromPlanDB();
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api; package com.djrapitops.plan.api;
@ -37,4 +37,4 @@ public class ServerAPI extends CommonAPI {
public FetchOperations fetchFromPlanDB() { public FetchOperations fetchFromPlanDB() {
return serverSystem.getDatabaseSystem().getActiveDatabase().fetch(); return serverSystem.getDatabaseSystem().getActiveDatabase().fetch();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions; package com.djrapitops.plan.api.exceptions;
@ -18,4 +18,4 @@ public class EnableException extends Exception {
public EnableException(String message) { public EnableException(String message) {
super(message); super(message);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions; package com.djrapitops.plan.api.exceptions;
@ -14,4 +14,4 @@ public class ParseException extends Exception {
public ParseException(Throwable cause) { public ParseException(Throwable cause) {
super(cause); super(cause);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions; package com.djrapitops.plan.api.exceptions;
@ -34,4 +34,4 @@ public class WebUserAuthException extends WebException {
public FailReason getFailReason() { public FailReason getFailReason() {
return failReason; return failReason;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -16,4 +16,4 @@ public class BadRequestException extends WebException {
public BadRequestException(String message) { public BadRequestException(String message) {
super(message, ResponseCode.BAD_REQUEST); super(message, ResponseCode.BAD_REQUEST);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -20,4 +20,4 @@ public class ConnectionFailException extends WebException {
public ConnectionFailException(Throwable cause) { public ConnectionFailException(Throwable cause) {
super(cause, ResponseCode.CONNECTION_REFUSED); super(cause, ResponseCode.CONNECTION_REFUSED);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -15,4 +15,4 @@ public class ForbiddenException extends WebFailException {
public ForbiddenException(String url) { public ForbiddenException(String url) {
super("Forbidden: " + url, ResponseCode.FORBIDDEN); super("Forbidden: " + url, ResponseCode.FORBIDDEN);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -16,4 +16,4 @@ public class GatewayException extends WebException {
public GatewayException(String message) { public GatewayException(String message) {
super(message, ResponseCode.GATEWAY_ERROR); super(message, ResponseCode.GATEWAY_ERROR);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -19,4 +19,4 @@ public class InternalErrorException extends WebFailException {
public InternalErrorException(String message, Throwable cause) { public InternalErrorException(String message, Throwable cause) {
super(message, cause, ResponseCode.INTERNAL_ERROR); super(message, cause, ResponseCode.INTERNAL_ERROR);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -22,4 +22,4 @@ public class NoServersException extends WebException {
public NoServersException(Throwable cause) { public NoServersException(Throwable cause) {
super(cause); super(cause);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -15,4 +15,4 @@ public class NotFoundException extends WebFailException {
public NotFoundException(String message) { public NotFoundException(String message) {
super(message, ResponseCode.NOT_FOUND); super(message, ResponseCode.NOT_FOUND);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -16,4 +16,4 @@ public class TransferDatabaseException extends WebException {
public TransferDatabaseException(DBException cause) { public TransferDatabaseException(DBException cause) {
super(cause); super(cause);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -24,4 +24,4 @@ public class UnauthorizedServerException extends WebFailException {
public UnauthorizedServerException(Throwable cause) { public UnauthorizedServerException(Throwable cause) {
super(cause, ResponseCode.PRECONDITION_FAILED); super(cause, ResponseCode.PRECONDITION_FAILED);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -16,4 +16,4 @@ public class UnsupportedTransferDatabaseException extends WebException {
public UnsupportedTransferDatabaseException(Database db) { public UnsupportedTransferDatabaseException(Database db) {
super(db.getName() + " does not support Transfer operations!"); super(db.getName() + " does not support Transfer operations!");
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -56,4 +56,4 @@ public class WebException extends Exception {
public ResponseCode getResponseCode() { public ResponseCode getResponseCode() {
return responseCode; return responseCode;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.connection; package com.djrapitops.plan.api.exceptions.connection;
@ -28,4 +28,4 @@ public class WebFailException extends WebException {
public WebFailException(Throwable cause, ResponseCode responseCode) { public WebFailException(Throwable cause, ResponseCode responseCode) {
super(cause, responseCode); super(cause, responseCode);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.database; package com.djrapitops.plan.api.exceptions.database;
@ -22,4 +22,4 @@ public class DBException extends Exception {
public DBException(String message) { public DBException(String message) {
super(message); super(message);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.api.exceptions.database; package com.djrapitops.plan.api.exceptions.database;
@ -22,4 +22,4 @@ public class DBInitException extends FatalDBException {
public DBInitException(String message) { public DBInitException(String message) {
super(message); super(message);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.command.commands; package com.djrapitops.plan.command.commands;
@ -37,4 +37,4 @@ public class BungeeSetupToggleCommand extends CommandNode {
String msg = !setupAllowed ? "§aSet-up is now Allowed" : "§cSet-up is now Forbidden"; String msg = !setupAllowed ? "§aSet-up is now Allowed" : "§cSet-up is now Forbidden";
sender.sendMessage(msg); sender.sendMessage(msg);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.command.commands; package com.djrapitops.plan.command.commands;
@ -30,4 +30,4 @@ public class DevCommand extends CommandNode {
sender.sendMessage("No features currently implemented in the command."); sender.sendMessage("No features currently implemented in the command.");
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data; package com.djrapitops.plan.data;

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data; package com.djrapitops.plan.data;
@ -459,4 +459,4 @@ public class PlayerProfile {
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data; package com.djrapitops.plan.data;
@ -388,4 +388,4 @@ public class ServerProfile {
} }
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.calculation; package com.djrapitops.plan.data.calculation;
@ -247,4 +247,4 @@ public class HealthNotes {
regularNewCompareSet.removeAll(veryActiveFWAG); regularNewCompareSet.removeAll(veryActiveFWAG);
return regularNewCompareSet.size(); return regularNewCompareSet.size();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.container; package com.djrapitops.plan.data.container;
@ -75,4 +75,4 @@ public class Action {
public String toString() { public String toString() {
return Html.TABLELINE_3.parse(FormatUtils.formatTimeStampYear(date), doneAction.toString(), additionalInfo); return Html.TABLELINE_3.parse(FormatUtils.formatTimeStampYear(date), doneAction.toString(), additionalInfo);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.container; package com.djrapitops.plan.data.container;
@ -64,4 +64,4 @@ public class GeoInfo {
public int hashCode() { public int hashCode() {
return Objects.hashCode(ip, geolocation); return Objects.hashCode(ip, geolocation);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.container; package com.djrapitops.plan.data.container;
@ -105,4 +105,4 @@ public class StickyData {
public Double getMessagesSent() { public Double getMessagesSent() {
return messagesSent; return messagesSent;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.container.builders; package com.djrapitops.plan.data.container.builders;
@ -94,4 +94,4 @@ public class TPSBuilder {
return this; return this;
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.element; package com.djrapitops.plan.data.element;
@ -52,4 +52,4 @@ public final class AnalysisContainer extends InspectContainer {
public boolean hasPlayerTableValues() { public boolean hasPlayerTableValues() {
return !playerTableValues.isEmpty(); return !playerTableValues.isEmpty();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.element; package com.djrapitops.plan.data.element;
@ -85,4 +85,4 @@ public class InspectContainer {
public final boolean hasValues() { public final boolean hasValues() {
return !values.isEmpty(); return !values.isEmpty();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.element; package com.djrapitops.plan.data.element;
@ -104,4 +104,4 @@ public class TableContainer {
return Html.TABLE_SCROLL.parse(); return Html.TABLE_SCROLL.parse();
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.plugin; package com.djrapitops.plan.data.plugin;

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.data.plugin; package com.djrapitops.plan.data.plugin;
@ -14,4 +14,4 @@ public enum ContainerSize {
TWO_THIRDS, TWO_THIRDS,
WHOLE, WHOLE,
TAB TAB
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system; package com.djrapitops.plan.system;
@ -60,4 +60,4 @@ public class BukkitSystem extends PlanSystem implements ServerSystem {
super.enable(); super.enable();
NetworkSettings.loadSettingsFromDB(); NetworkSettings.loadSettingsFromDB();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system; package com.djrapitops.plan.system;
@ -60,4 +60,4 @@ public class BungeeSystem extends PlanSystem {
super.enable(); super.enable();
NetworkSettings.placeSettingsToDB(); NetworkSettings.placeSettingsToDB();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system; package com.djrapitops.plan.system;
@ -200,4 +200,4 @@ public abstract class PlanSystem implements SubSystem {
static void setTestSystem(PlanSystem testSystem) { static void setTestSystem(PlanSystem testSystem) {
PlanSystem.testSystem = testSystem; PlanSystem.testSystem = testSystem;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system; package com.djrapitops.plan.system;
@ -62,4 +62,4 @@ public class SpongeSystem extends PlanSystem implements ServerSystem {
super.enable(); super.enable();
NetworkSettings.loadSettingsFromDB(); NetworkSettings.loadSettingsFromDB();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system; package com.djrapitops.plan.system;
@ -25,4 +25,4 @@ public interface SubSystem {
*/ */
void disable(); void disable();
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.cache; package com.djrapitops.plan.system.cache;
@ -49,4 +49,4 @@ public class CacheSystem implements SubSystem {
public GeolocationCache getGeolocationCache() { public GeolocationCache getGeolocationCache() {
return geolocationCache; return geolocationCache;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database; package com.djrapitops.plan.system.database;
@ -20,4 +20,4 @@ public class BungeeDBSystem extends DBSystem {
databases.add(db); databases.add(db);
db.init(); db.init();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database; package com.djrapitops.plan.system.database;
@ -91,4 +91,4 @@ public abstract class DBSystem implements SubSystem {
this.db.close(); this.db.close();
this.db = db; this.db = db;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database; package com.djrapitops.plan.system.database;
@ -26,4 +26,4 @@ public class ServerDBSystem extends DBSystem {
String dbType = Settings.DB_TYPE.toString().toLowerCase().trim(); String dbType = Settings.DB_TYPE.toString().toLowerCase().trim();
db = getActiveDatabaseByName(dbType); db = getActiveDatabaseByName(dbType);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.operation; package com.djrapitops.plan.system.database.databases.operation;
@ -70,4 +70,4 @@ public interface SaveOperations {
void serverInfoForThisServer(Server server) throws DBException; void serverInfoForThisServer(Server server) throws DBException;
void webUser(WebUser webUser) throws DBException; void webUser(WebUser webUser) throws DBException;
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.operation; package com.djrapitops.plan.system.database.databases.operation;
@ -28,4 +28,4 @@ public interface TransferOperations {
Optional<UUID> getServerPlayerIsOnlineOn(UUID playerUUID) throws DBException; Optional<UUID> getServerPlayerIsOnlineOn(UUID playerUUID) throws DBException;
Optional<String> getEncodedConfigSettings() throws DBException; Optional<String> getEncodedConfigSettings() throws DBException;
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.operation; package com.djrapitops.plan.system.database.databases.sql.operation;
@ -224,4 +224,4 @@ public class SQLSaveOps extends SQLOps implements SaveOperations {
throw SQLErrorUtil.getExceptionFor(e); throw SQLErrorUtil.getExceptionFor(e);
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.operation; package com.djrapitops.plan.system.database.databases.sql.operation;
@ -50,4 +50,4 @@ public class SQLTransferOps extends SQLOps implements TransferOperations {
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.processing; package com.djrapitops.plan.system.database.databases.sql.processing;
@ -57,4 +57,4 @@ public abstract class ExecStatement {
public String getSql() { public String getSql() {
return sql; return sql;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.processing; package com.djrapitops.plan.system.database.databases.sql.processing;
@ -29,4 +29,4 @@ public abstract class QueryAllStatement<T> extends QueryStatement<T> {
@Override @Override
public abstract T processResults(ResultSet set) throws SQLException; public abstract T processResults(ResultSet set) throws SQLException;
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.processing; package com.djrapitops.plan.system.database.databases.sql.processing;
@ -56,4 +56,4 @@ public abstract class QueryStatement<T> {
public String getSql() { public String getSql() {
return sql; return sql;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.statements; package com.djrapitops.plan.system.database.databases.sql.statements;
@ -17,4 +17,4 @@ public interface Column {
String toString(); String toString();
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.statements; package com.djrapitops.plan.system.database.databases.sql.statements;

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.statements; package com.djrapitops.plan.system.database.databases.sql.statements;

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.tables; package com.djrapitops.plan.system.database.databases.sql.tables;
@ -249,4 +249,4 @@ public class ActionsTable extends UserIDTable {
return column; return column;
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.tables; package com.djrapitops.plan.system.database.databases.sql.tables;
@ -440,4 +440,4 @@ public class ServerTable extends Table {
return column; return column;
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.tables; package com.djrapitops.plan.system.database.databases.sql.tables;
@ -182,4 +182,4 @@ public class TransferTable extends Table {
return column; return column;
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.tables; package com.djrapitops.plan.system.database.databases.sql.tables;
@ -396,4 +396,4 @@ public class UserInfoTable extends UserIDTable {
} }
}); });
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.tables.move; package com.djrapitops.plan.system.database.databases.sql.tables.move;
@ -191,4 +191,4 @@ public class BatchOperationTable extends Table {
Log.debug("Batch Copy Sessions"); Log.debug("Batch Copy Sessions");
toDB.getDb().getSessionsTable().insertSessions(db.getSessionsTable().getAllSessions(true), true); toDB.getDb().getSessionsTable().insertSessions(db.getSessionsTable().getAllSessions(true), true);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.database.databases.sql.tables.move; package com.djrapitops.plan.system.database.databases.sql.tables.move;
@ -159,4 +159,4 @@ public class Version8TransferTable extends TransferTable {
dropTable(tempTableName); dropTable(tempTableName);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.file; package com.djrapitops.plan.system.file;
@ -79,4 +79,4 @@ public class FileSystem implements SubSystem {
public void disable() { public void disable() {
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info; package com.djrapitops.plan.system.info;
@ -42,4 +42,4 @@ public class BungeeInfoSystem extends InfoSystem {
throw new WebFailException("Exception during Network Page Parsing", e); throw new WebFailException("Exception during Network Page Parsing", e);
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info; package com.djrapitops.plan.system.info;
@ -160,4 +160,4 @@ public abstract class InfoSystem implements SubSystem {
connectionSystem.setSetupAllowed(true); connectionSystem.setSetupAllowed(true);
connectionSystem.sendInfoRequest(new SendDBSettingsRequest(addressOfThisServer), bungee); connectionSystem.sendInfoRequest(new SendDBSettingsRequest(addressOfThisServer), bungee);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info; package com.djrapitops.plan.system.info;
@ -39,4 +39,4 @@ public class ServerInfoSystem extends InfoSystem {
String html = HtmlStructure.createServerContainer(); String html = HtmlStructure.createServerContainer();
sendRequest(new CacheNetworkPageContentRequest(ServerInfo.getServerUUID(), html)); sendRequest(new CacheNetworkPageContentRequest(ServerInfo.getServerUUID(), html));
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.connection; package com.djrapitops.plan.system.info.connection;
@ -108,4 +108,4 @@ public class BungeeConnectionSystem extends ConnectionSystem {
public void disable() { public void disable() {
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.connection; package com.djrapitops.plan.system.info.connection;
@ -90,4 +90,4 @@ public class ConnectionLog {
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.connection; package com.djrapitops.plan.system.info.connection;
@ -173,4 +173,4 @@ public class ConnectionOut {
sc.init(null, trustAllCerts, new java.security.SecureRandom()); sc.init(null, trustAllCerts, new java.security.SecureRandom());
return sc.getSocketFactory(); return sc.getSocketFactory();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.connection; package com.djrapitops.plan.system.info.connection;
@ -134,4 +134,4 @@ public abstract class ConnectionSystem implements SubSystem {
public List<Server> getBukkitServers() { public List<Server> getBukkitServers() {
return new ArrayList<>(bukkitServers.values()); return new ArrayList<>(bukkitServers.values());
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.connection; package com.djrapitops.plan.system.info.connection;
@ -57,4 +57,4 @@ public class InfoRequestPageHandler extends PageHandler {
private int getResponseCodeFor(WebException e) { private int getResponseCodeFor(WebException e) {
return e.getResponseCode().getCode(); return e.getResponseCode().getCode();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.connection; package com.djrapitops.plan.system.info.connection;
@ -126,4 +126,4 @@ public class ServerConnectionSystem extends ConnectionSystem {
public void disable() { public void disable() {
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.connection; package com.djrapitops.plan.system.info.connection;
@ -63,4 +63,4 @@ public class WebExceptionLogger {
return null; return null;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -71,4 +71,4 @@ public class CacheAnalysisPageRequest extends InfoRequestWithVariables implement
public void runLocally() { public void runLocally() {
cache(Settings.ANALYSIS_EXPORT.isTrue(), serverUUID, html); cache(Settings.ANALYSIS_EXPORT.isTrue(), serverUUID, html);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -79,4 +79,4 @@ public class CacheInspectPageRequest extends InfoRequestWithVariables implements
public void runLocally() { public void runLocally() {
cache(Settings.ANALYSIS_EXPORT.isTrue(), player, html); cache(Settings.ANALYSIS_EXPORT.isTrue(), player, html);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -74,4 +74,4 @@ public class CacheInspectPluginsTabRequest extends InfoRequestWithVariables impl
public void runLocally() { public void runLocally() {
getPluginsTab(player).addTab(ServerInfo.getServerUUID(), variables.get("nav"), html); getPluginsTab(player).addTab(ServerInfo.getServerUUID(), variables.get("nav"), html);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -70,4 +70,4 @@ public class CacheNetworkPageContentRequest extends InfoRequestWithVariables imp
public static CacheNetworkPageContentRequest createHandler() { public static CacheNetworkPageContentRequest createHandler() {
return new CacheNetworkPageContentRequest(); return new CacheNetworkPageContentRequest();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -10,4 +10,4 @@ package com.djrapitops.plan.system.info.request;
* @author Rsl1122 * @author Rsl1122
*/ */
public interface CacheRequest extends InfoRequest { public interface CacheRequest extends InfoRequest {
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -74,4 +74,4 @@ public class CheckConnectionRequest extends InfoRequestWithVariables {
throw new GatewayException(e.getMessage()); throw new GatewayException(e.getMessage());
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -103,4 +103,4 @@ public class GenerateAnalysisPageRequest extends InfoRequestWithVariables implem
public UUID getServerUUID() { public UUID getServerUUID() {
return serverUUID; return serverUUID;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -90,4 +90,4 @@ public class GenerateInspectPageRequest extends InfoRequestWithVariables impleme
public UUID getPlayerUUID() { public UUID getPlayerUUID() {
return playerUUID; return playerUUID;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -65,4 +65,4 @@ public class GenerateInspectPluginsTabRequest extends InfoRequestWithVariables i
public UUID getPlayerUUID() { public UUID getPlayerUUID() {
return playerUUID; return playerUUID;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -32,4 +32,4 @@ public class GenerateNetworkPageContentRequest implements WideRequest, GenerateR
public void runLocally() throws WebException { public void runLocally() throws WebException {
InfoSystem.getInstance().updateNetworkPage(); InfoSystem.getInstance().updateNetworkPage();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -10,4 +10,4 @@ package com.djrapitops.plan.system.info.request;
* @author Rsl1122 * @author Rsl1122
*/ */
public interface GenerateRequest extends InfoRequest { public interface GenerateRequest extends InfoRequest {
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -20,4 +20,4 @@ public interface InfoRequest {
void runLocally() throws WebException; void runLocally() throws WebException;
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -25,4 +25,4 @@ public abstract class InfoRequestWithVariables implements InfoRequest {
public Map<String, String> getVariables() { public Map<String, String> getVariables() {
return variables; return variables;
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -95,4 +95,4 @@ public class SaveDBSettingsRequest extends InfoRequestWithVariables implements S
Settings.DB_DATABASE.set(database); Settings.DB_DATABASE.set(database);
Settings.save(); Settings.save();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -92,4 +92,4 @@ public class SendDBSettingsRequest extends InfoRequestWithVariables implements S
settings.put("ThemeBase", themeBase); settings.put("ThemeBase", themeBase);
Settings.serverSpecific().addOriginalBukkitSettings(serverUUID, settings); Settings.serverSpecific().addOriginalBukkitSettings(serverUUID, settings);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -11,4 +11,4 @@ package com.djrapitops.plan.system.info.request;
*/ */
public interface SetupRequest extends InfoRequest { public interface SetupRequest extends InfoRequest {
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -34,4 +34,4 @@ public class UpdateCancelRequest implements InfoRequest {
ShutdownUpdateHook.deActivate(); ShutdownUpdateHook.deActivate();
return DefaultResponses.SUCCESS.get(); return DefaultResponses.SUCCESS.get();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -40,4 +40,4 @@ public class UpdateRequest implements InfoRequest {
return new BadRequestResponse("Update not allowed on this server"); return new BadRequestResponse("Update not allowed on this server");
} }
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.request; package com.djrapitops.plan.system.info.request;
@ -10,4 +10,4 @@ package com.djrapitops.plan.system.info.request;
* @author Rsl1122 * @author Rsl1122
*/ */
public interface WideRequest extends InfoRequest { public interface WideRequest extends InfoRequest {
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.server; package com.djrapitops.plan.system.info.server;
@ -119,4 +119,4 @@ public class BukkitServerInfo extends ServerInfo {
} }
return Optional.empty(); return Optional.empty();
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.server; package com.djrapitops.plan.system.info.server;
@ -80,4 +80,4 @@ public class BungeeServerInfo extends ServerInfo {
String seed = properties.getName() + properties.getIp() + properties.getPort() + properties.getVersion() + properties.getImplVersion(); String seed = properties.getName() + properties.getIp() + properties.getPort() + properties.getVersion() + properties.getImplVersion();
return UUID.nameUUIDFromBytes(seed.getBytes()); return UUID.nameUUIDFromBytes(seed.getBytes());
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Licence is provided in the jar as license.yml also here: * License is provided in the jar as LICENSE also here:
* https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml * https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/LICENSE
*/ */
package com.djrapitops.plan.system.info.server; package com.djrapitops.plan.system.info.server;
@ -90,4 +90,4 @@ public class Server implements Comparable<Server> {
public int compareTo(Server other) { public int compareTo(Server other) {
return Integer.compare(this.id, other.id); return Integer.compare(this.id, other.id);
} }
} }

Some files were not shown because too many files have changed in this diff Show More