I said "revert bullshit"

This commit is contained in:
2025-12-09 19:28:01 +01:00
parent f68dc3d5a0
commit cf97429ad9
4 changed files with 11 additions and 9 deletions

View File

@@ -3,20 +3,24 @@ plugins {
}
sourceSets {
create("common") {
java.srcDir("common/src")
}
create("acq") {
java.srcDir("src/main/java/acq/acq/src")
java.srcDir("acq/src")
}
create("acs") {
java.srcDir("src/main/java/acs/acs/src")
java.srcDir("acs/src")
}
create("externalApp") {
java.srcDir("src/main/java/externalApp/externalApp/src")
java.srcDir("externalApp/src")
}
create("httpServer") {
java.srcDir("src/main/java/httpServer/httpServer/src")
java.srcDir("httpServer/src")
}
}

View File

@@ -1,5 +1,6 @@
package authorization;
import httpServer.httpServer.src.authorization.Client;
import org.springframework.security.crypto.bcrypt.BCrypt;
import java.util.*;

View File

@@ -7,14 +7,11 @@ import common.common.src.html.HtmlManager;
import common.common.src.json.JsonManager;
import common.common.src.logger.Logger;
import common.common.src.socket.SocketManager;
import common.common.src.json.JsonManager;
import httpServer.httpServer.src.annotations.AllowedVerb;
import httpServer.httpServer.src.annotations.OnlyAuthorizedClients;
import httpServer.httpServer.src.authorization.AuthorizedClients;
import httpServer.httpServer.src.authorization.Client;
import static common.common.src.ports.Ports.*;
import authorization.AuthorizedClients;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocket;
import javax.net.ssl.SSLSocketFactory;

View File

@@ -4,7 +4,7 @@ import com.sun.net.httpserver.HttpExchange;
import common.common.src.logger.Logger;
import httpServer.httpServer.src.annotations.AllowedVerb;
import httpServer.httpServer.src.annotations.OnlyAuthorizedClients;
import httpServer.httpServer.src.authorization.AuthorizedClients;
import authorization.AuthorizedClients;
import httpServer.httpServer.src.exceptions.NoSuchVerbException;
import httpServer.httpServer.src.exceptions.ClientAuthorisationException;