From d1001ffb8ebe104aa0c00cf030d9bcd14b5e0265 Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Thu, 17 Oct 2019 22:58:26 +0300 Subject: [PATCH] license headers --- build.sbt | 2 +- src/main/resources/static/table_export.js | 2 +- src/main/scala/me/arcanis/ffxivbis/Application.scala | 8 ++++++++ src/main/scala/me/arcanis/ffxivbis/ffxivbis.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/AriyalaHelper.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/Authorization.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/http/BiSHelper.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/http/LootHelper.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/PlayerHelper.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/RootEndpoint.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/http/Swagger.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/http/UserHelper.scala | 8 ++++++++ .../arcanis/ffxivbis/http/api/v1/BiSEndpoint.scala | 8 ++++++++ .../arcanis/ffxivbis/http/api/v1/LootEndpoint.scala | 8 ++++++++ .../ffxivbis/http/api/v1/PlayerEndpoint.scala | 8 ++++++++ .../ffxivbis/http/api/v1/RootApiV1Endpoint.scala | 8 ++++++++ .../arcanis/ffxivbis/http/api/v1/UserEndpoint.scala | 8 ++++++++ .../ffxivbis/http/api/v1/json/ApiAction.scala | 8 ++++++++ .../ffxivbis/http/api/v1/json/JsonSupport.scala | 8 ++++++++ .../http/api/v1/json/PieceActionResponse.scala | 8 ++++++++ .../ffxivbis/http/api/v1/json/PieceResponse.scala | 8 ++++++++ .../http/api/v1/json/PlayerActionResponse.scala | 8 ++++++++ .../http/api/v1/json/PlayerBiSLinkResponse.scala | 8 ++++++++ .../ffxivbis/http/api/v1/json/PlayerIdResponse.scala | 8 ++++++++ .../api/v1/json/PlayerIdWithCountersResponse.scala | 8 ++++++++ .../ffxivbis/http/api/v1/json/PlayerResponse.scala | 8 ++++++++ .../ffxivbis/http/api/v1/json/UserResponse.scala | 8 ++++++++ .../arcanis/ffxivbis/http/view/BasePartyView.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/view/BiSView.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/view/ErrorView.scala | 8 ++++++++ .../arcanis/ffxivbis/http/view/ExportToCSVView.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/view/IndexView.scala | 8 ++++++++ .../arcanis/ffxivbis/http/view/LootSuggestView.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/view/LootView.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/view/PlayerView.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/view/RootView.scala | 8 ++++++++ .../arcanis/ffxivbis/http/view/SearchLineView.scala | 8 ++++++++ .../me/arcanis/ffxivbis/http/view/UserView.scala | 8 ++++++++ src/main/scala/me/arcanis/ffxivbis/models/BiS.scala | 8 ++++++++ src/main/scala/me/arcanis/ffxivbis/models/Job.scala | 8 ++++++++ src/main/scala/me/arcanis/ffxivbis/models/Loot.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/models/Piece.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/models/Player.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/models/PlayerId.scala | 8 ++++++++ .../ffxivbis/models/PlayerIdWithCounters.scala | 8 ++++++++ src/main/scala/me/arcanis/ffxivbis/models/User.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/service/Ariyala.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/service/Database.scala | 8 ++++++++ .../me/arcanis/ffxivbis/service/LootSelector.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/service/Party.scala | 8 ++++++++ .../ffxivbis/service/impl/DatabaseBiSHandler.scala | 8 ++++++++ .../arcanis/ffxivbis/service/impl/DatabaseImpl.scala | 8 ++++++++ .../ffxivbis/service/impl/DatabaseLootHandler.scala | 8 ++++++++ .../ffxivbis/service/impl/DatabasePartyHandler.scala | 12 +++++++++--- .../ffxivbis/service/impl/DatabaseUserHandler.scala | 8 ++++++++ .../me/arcanis/ffxivbis/storage/BiSProfile.scala | 8 ++++++++ .../arcanis/ffxivbis/storage/DatabaseProfile.scala | 8 ++++++++ .../me/arcanis/ffxivbis/storage/LootProfile.scala | 8 ++++++++ .../me/arcanis/ffxivbis/storage/Migration.scala | 8 ++++++++ .../me/arcanis/ffxivbis/storage/PlayersProfile.scala | 8 ++++++++ .../me/arcanis/ffxivbis/storage/UsersProfile.scala | 8 ++++++++ .../scala/me/arcanis/ffxivbis/utils/Implicits.scala | 8 ++++++++ 62 files changed, 483 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index 4a711d8..3c20904 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -name := "ffxivbis-scala" +name := "ffxivbis" version := "0.9.0" diff --git a/src/main/resources/static/table_export.js b/src/main/resources/static/table_export.js index aee73c1..ea019df 100644 --- a/src/main/resources/static/table_export.js +++ b/src/main/resources/static/table_export.js @@ -17,7 +17,7 @@ function exportTableToCsv(filename) { var csv = []; for (var i = 0; i < rows.length; i++) { if (rows[i].style.display === "none") - continue + continue; var cols = rows[i].querySelectorAll("td, th"); var row = []; diff --git a/src/main/scala/me/arcanis/ffxivbis/Application.scala b/src/main/scala/me/arcanis/ffxivbis/Application.scala index 7b651d0..86ce194 100644 --- a/src/main/scala/me/arcanis/ffxivbis/Application.scala +++ b/src/main/scala/me/arcanis/ffxivbis/Application.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis import akka.actor.{Actor, Props} diff --git a/src/main/scala/me/arcanis/ffxivbis/ffxivbis.scala b/src/main/scala/me/arcanis/ffxivbis/ffxivbis.scala index 91f0899..31f6ca0 100644 --- a/src/main/scala/me/arcanis/ffxivbis/ffxivbis.scala +++ b/src/main/scala/me/arcanis/ffxivbis/ffxivbis.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis import akka.actor.ActorSystem diff --git a/src/main/scala/me/arcanis/ffxivbis/http/AriyalaHelper.scala b/src/main/scala/me/arcanis/ffxivbis/http/AriyalaHelper.scala index 2edc7dd..74dcd66 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/AriyalaHelper.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/AriyalaHelper.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/Authorization.scala b/src/main/scala/me/arcanis/ffxivbis/http/Authorization.scala index 8597d22..94e0222 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/Authorization.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/Authorization.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/BiSHelper.scala b/src/main/scala/me/arcanis/ffxivbis/http/BiSHelper.scala index 766f7e4..ea58486 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/BiSHelper.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/BiSHelper.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/LootHelper.scala b/src/main/scala/me/arcanis/ffxivbis/http/LootHelper.scala index 26743f2..6534a78 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/LootHelper.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/LootHelper.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/PlayerHelper.scala b/src/main/scala/me/arcanis/ffxivbis/http/PlayerHelper.scala index 9a156bf..8796aa9 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/PlayerHelper.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/PlayerHelper.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/RootEndpoint.scala b/src/main/scala/me/arcanis/ffxivbis/http/RootEndpoint.scala index de1fbd2..75962e1 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/RootEndpoint.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/RootEndpoint.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import akka.actor.{ActorRef, ActorSystem} diff --git a/src/main/scala/me/arcanis/ffxivbis/http/Swagger.scala b/src/main/scala/me/arcanis/ffxivbis/http/Swagger.scala index 940e634..8fce27f 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/Swagger.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/Swagger.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import com.github.swagger.akka.SwaggerHttpService diff --git a/src/main/scala/me/arcanis/ffxivbis/http/UserHelper.scala b/src/main/scala/me/arcanis/ffxivbis/http/UserHelper.scala index 28926ae..12ad163 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/UserHelper.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/UserHelper.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/BiSEndpoint.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/BiSEndpoint.scala index a7fda3e..060732f 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/BiSEndpoint.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/BiSEndpoint.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1 import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/LootEndpoint.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/LootEndpoint.scala index f1e60e1..7777ec8 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/LootEndpoint.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/LootEndpoint.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1 import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/PlayerEndpoint.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/PlayerEndpoint.scala index ad3bd8b..1676dd6 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/PlayerEndpoint.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/PlayerEndpoint.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1 import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/RootApiV1Endpoint.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/RootApiV1Endpoint.scala index 77835dc..dec7172 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/RootApiV1Endpoint.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/RootApiV1Endpoint.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1 import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/UserEndpoint.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/UserEndpoint.scala index 8c54e98..84f7459 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/UserEndpoint.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/UserEndpoint.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1 import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/ApiAction.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/ApiAction.scala index 9e20b4d..3a8d3af 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/ApiAction.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/ApiAction.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json object ApiAction extends Enumeration { diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/JsonSupport.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/JsonSupport.scala index 529afe1..33c4c7d 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/JsonSupport.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/JsonSupport.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import akka.http.scaladsl.marshallers.sprayjson.SprayJsonSupport diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceActionResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceActionResponse.scala index bd9f7af..6769689 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceActionResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceActionResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceResponse.scala index 10d03fe..f4aa9f7 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PieceResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerActionResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerActionResponse.scala index 3bb583e..6f36616 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerActionResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerActionResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerBiSLinkResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerBiSLinkResponse.scala index f35f7c7..3c790ff 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerBiSLinkResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerBiSLinkResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdResponse.scala index 723cb28..f6a9202 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdWithCountersResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdWithCountersResponse.scala index be0a2d3..094df3f 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdWithCountersResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerIdWithCountersResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerResponse.scala index 2d3943f..d993ef9 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/PlayerResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/UserResponse.scala b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/UserResponse.scala index 1ad5724..05e37dd 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/UserResponse.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/api/v1/json/UserResponse.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.api.v1.json import io.swagger.v3.oas.annotations.media.Schema diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/BasePartyView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/BasePartyView.scala index 1fc8b18..725caac 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/BasePartyView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/BasePartyView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/BiSView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/BiSView.scala index a3e4c3e..c5d0d4e 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/BiSView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/BiSView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/ErrorView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/ErrorView.scala index f42dd8d..2057155 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/ErrorView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/ErrorView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import scalatags.Text diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/ExportToCSVView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/ExportToCSVView.scala index 3c9f123..4a5393d 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/ExportToCSVView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/ExportToCSVView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import scalatags.Text diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/IndexView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/IndexView.scala index 38dcdb8..5399b9f 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/IndexView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/IndexView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/LootSuggestView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/LootSuggestView.scala index c45bf92..b18eee4 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/LootSuggestView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/LootSuggestView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/LootView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/LootView.scala index db4cadc..57c39dd 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/LootView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/LootView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/PlayerView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/PlayerView.scala index 67d496a..bad264b 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/PlayerView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/PlayerView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/RootView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/RootView.scala index 8da13cc..7bab573 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/RootView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/RootView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/SearchLineView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/SearchLineView.scala index 492a938..efb3c91 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/SearchLineView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/SearchLineView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import scalatags.Text diff --git a/src/main/scala/me/arcanis/ffxivbis/http/view/UserView.scala b/src/main/scala/me/arcanis/ffxivbis/http/view/UserView.scala index 1e6654c..89ba478 100644 --- a/src/main/scala/me/arcanis/ffxivbis/http/view/UserView.scala +++ b/src/main/scala/me/arcanis/ffxivbis/http/view/UserView.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.http.view import akka.actor.ActorRef diff --git a/src/main/scala/me/arcanis/ffxivbis/models/BiS.scala b/src/main/scala/me/arcanis/ffxivbis/models/BiS.scala index 7f114b8..7ed3570 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/BiS.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/BiS.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models case class BiS(weapon: Option[Piece], diff --git a/src/main/scala/me/arcanis/ffxivbis/models/Job.scala b/src/main/scala/me/arcanis/ffxivbis/models/Job.scala index c53f896..01c68e7 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/Job.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/Job.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models object Job { diff --git a/src/main/scala/me/arcanis/ffxivbis/models/Loot.scala b/src/main/scala/me/arcanis/ffxivbis/models/Loot.scala index 1c188eb..b07c2c3 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/Loot.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/Loot.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models case class Loot(playerId: Long, piece: Piece) diff --git a/src/main/scala/me/arcanis/ffxivbis/models/Piece.scala b/src/main/scala/me/arcanis/ffxivbis/models/Piece.scala index 7773b95..73f4ab1 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/Piece.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/Piece.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models trait Piece { diff --git a/src/main/scala/me/arcanis/ffxivbis/models/Player.scala b/src/main/scala/me/arcanis/ffxivbis/models/Player.scala index 8cde805..bc985a8 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/Player.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/Player.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models case class Player(partyId: String, diff --git a/src/main/scala/me/arcanis/ffxivbis/models/PlayerId.scala b/src/main/scala/me/arcanis/ffxivbis/models/PlayerId.scala index ad70525..876e6c2 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/PlayerId.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/PlayerId.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models import scala.util.Try diff --git a/src/main/scala/me/arcanis/ffxivbis/models/PlayerIdWithCounters.scala b/src/main/scala/me/arcanis/ffxivbis/models/PlayerIdWithCounters.scala index 9c8fa14..fbc616c 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/PlayerIdWithCounters.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/PlayerIdWithCounters.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models case class PlayerIdWithCounters(partyId: String, diff --git a/src/main/scala/me/arcanis/ffxivbis/models/User.scala b/src/main/scala/me/arcanis/ffxivbis/models/User.scala index 5b1e979..9a0e613 100644 --- a/src/main/scala/me/arcanis/ffxivbis/models/User.scala +++ b/src/main/scala/me/arcanis/ffxivbis/models/User.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.models import org.mindrot.jbcrypt.BCrypt diff --git a/src/main/scala/me/arcanis/ffxivbis/service/Ariyala.scala b/src/main/scala/me/arcanis/ffxivbis/service/Ariyala.scala index 2a3d239..cceba04 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/Ariyala.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/Ariyala.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service import java.nio.file.Paths diff --git a/src/main/scala/me/arcanis/ffxivbis/service/Database.scala b/src/main/scala/me/arcanis/ffxivbis/service/Database.scala index 2f02be7..ea7dca4 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/Database.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/Database.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service import akka.actor.Actor diff --git a/src/main/scala/me/arcanis/ffxivbis/service/LootSelector.scala b/src/main/scala/me/arcanis/ffxivbis/service/LootSelector.scala index de4bff3..4ed46f1 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/LootSelector.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/LootSelector.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service import me.arcanis.ffxivbis.models.{Piece, Player, PlayerIdWithCounters} diff --git a/src/main/scala/me/arcanis/ffxivbis/service/Party.scala b/src/main/scala/me/arcanis/ffxivbis/service/Party.scala index 25d7f72..fcdeb67 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/Party.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/Party.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service import com.typesafe.config.Config diff --git a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseBiSHandler.scala b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseBiSHandler.scala index 093dcad..6b29033 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseBiSHandler.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseBiSHandler.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service.impl import akka.pattern.pipe diff --git a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseImpl.scala b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseImpl.scala index 0cfc6ab..d68cbd2 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseImpl.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseImpl.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service.impl import akka.actor.Props diff --git a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseLootHandler.scala b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseLootHandler.scala index d8062a9..39f179e 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseLootHandler.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseLootHandler.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service.impl import akka.pattern.pipe diff --git a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabasePartyHandler.scala b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabasePartyHandler.scala index 4dcce8a..09d2bb2 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabasePartyHandler.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabasePartyHandler.scala @@ -1,12 +1,18 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service.impl -import akka.actor.Actor import akka.pattern.pipe -import com.typesafe.scalalogging.StrictLogging import me.arcanis.ffxivbis.models.{BiS, Player, PlayerId} import me.arcanis.ffxivbis.service.Database -trait DatabasePartyHandler { this: Actor with StrictLogging with Database => +trait DatabasePartyHandler { this: Database => import DatabasePartyHandler._ def partyHandler: Receive = { diff --git a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseUserHandler.scala b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseUserHandler.scala index 22e1f21..0c7c916 100644 --- a/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseUserHandler.scala +++ b/src/main/scala/me/arcanis/ffxivbis/service/impl/DatabaseUserHandler.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.service.impl import akka.pattern.pipe diff --git a/src/main/scala/me/arcanis/ffxivbis/storage/BiSProfile.scala b/src/main/scala/me/arcanis/ffxivbis/storage/BiSProfile.scala index c0e71c7..eaceabb 100644 --- a/src/main/scala/me/arcanis/ffxivbis/storage/BiSProfile.scala +++ b/src/main/scala/me/arcanis/ffxivbis/storage/BiSProfile.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.storage import me.arcanis.ffxivbis.models.{Job, Loot, Piece} diff --git a/src/main/scala/me/arcanis/ffxivbis/storage/DatabaseProfile.scala b/src/main/scala/me/arcanis/ffxivbis/storage/DatabaseProfile.scala index 31374ac..9468349 100644 --- a/src/main/scala/me/arcanis/ffxivbis/storage/DatabaseProfile.scala +++ b/src/main/scala/me/arcanis/ffxivbis/storage/DatabaseProfile.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.storage import java.time.Instant diff --git a/src/main/scala/me/arcanis/ffxivbis/storage/LootProfile.scala b/src/main/scala/me/arcanis/ffxivbis/storage/LootProfile.scala index c816a29..95e4c25 100644 --- a/src/main/scala/me/arcanis/ffxivbis/storage/LootProfile.scala +++ b/src/main/scala/me/arcanis/ffxivbis/storage/LootProfile.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.storage import me.arcanis.ffxivbis.models.{Job, Loot, Piece} diff --git a/src/main/scala/me/arcanis/ffxivbis/storage/Migration.scala b/src/main/scala/me/arcanis/ffxivbis/storage/Migration.scala index fed7b68..3458a2c 100644 --- a/src/main/scala/me/arcanis/ffxivbis/storage/Migration.scala +++ b/src/main/scala/me/arcanis/ffxivbis/storage/Migration.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.storage import com.typesafe.config.Config diff --git a/src/main/scala/me/arcanis/ffxivbis/storage/PlayersProfile.scala b/src/main/scala/me/arcanis/ffxivbis/storage/PlayersProfile.scala index 187b74c..4dfe571 100644 --- a/src/main/scala/me/arcanis/ffxivbis/storage/PlayersProfile.scala +++ b/src/main/scala/me/arcanis/ffxivbis/storage/PlayersProfile.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.storage import me.arcanis.ffxivbis.models.{BiS, Job, Player, PlayerId} diff --git a/src/main/scala/me/arcanis/ffxivbis/storage/UsersProfile.scala b/src/main/scala/me/arcanis/ffxivbis/storage/UsersProfile.scala index 89ba512..373d15d 100644 --- a/src/main/scala/me/arcanis/ffxivbis/storage/UsersProfile.scala +++ b/src/main/scala/me/arcanis/ffxivbis/storage/UsersProfile.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.storage import me.arcanis.ffxivbis.models.{Permission, User} diff --git a/src/main/scala/me/arcanis/ffxivbis/utils/Implicits.scala b/src/main/scala/me/arcanis/ffxivbis/utils/Implicits.scala index 054613e..ce924ae 100644 --- a/src/main/scala/me/arcanis/ffxivbis/utils/Implicits.scala +++ b/src/main/scala/me/arcanis/ffxivbis/utils/Implicits.scala @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2019 Evgeniy Alekseev. + * + * This file is part of ffxivbis + * (see https://github.com/arcan1s/ffxivbis). + * + * License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause + */ package me.arcanis.ffxivbis.utils import java.time.Duration