Remove junk flags "mac", and "cid". These were booleans.

This commit is contained in:
James Quinley 2023-04-10 22:58:49 -07:00
parent 1defede0eb
commit bb0d74798e

View File

@ -68,6 +68,8 @@ public class delegationServices {
//TODO get switcher working, NPE currently triggers on post init, move below code block into if statement, or outside of it so it will do the same thing regardless of t/f switch output //TODO get switcher working, NPE currently triggers on post init, move below code block into if statement, or outside of it so it will do the same thing regardless of t/f switch output
static ConnectionString AccountCon = new ConnectionString("mongodb://accountserver:x2sJ8Qu0VVMifNLX@192.168.1.5:27017/account?retryWrites=true&w=majority"); static ConnectionString AccountCon = new ConnectionString("mongodb://accountserver:x2sJ8Qu0VVMifNLX@192.168.1.5:27017/account?retryWrites=true&w=majority");
//mongodb://localhost:27017
//mongodb://accountserver:x2sJ8Qu0VVMifNLX@192.168.1.5:27017/account?retryWrites=true&w=majority
static MongoClientSettings AccountSettings = MongoClientSettings.builder() static MongoClientSettings AccountSettings = MongoClientSettings.builder()
.applyConnectionString(AccountCon) .applyConnectionString(AccountCon)
.applyToSocketSettings(builder -> .applyToSocketSettings(builder ->
@ -92,22 +94,18 @@ public class delegationServices {
} }
public static void delegationProcesser() { public static void delegationProcesser() {
Boolean cid = false;
Boolean mac = false;
Document Filter; Document Filter;
Object ClientID = null; Object ClientID = null;
try { try {
try { try {
ClientID = Lrequest.get("_id"); ClientID = Lrequest.get("_id");
cid = true;
} catch (Exception exrp) { } catch (Exception exrp) {
System.out.println("This request has opted out of CID."); System.out.println("This request has opted out of CID.");
} }
try { try {
Macid = (String) Lrequest.get("net"); Macid = (String) Lrequest.get("net");
mac = true;
} catch (Exception exrp) { } catch (Exception exrp) {
System.out.println("This request has opted out of CID."); System.out.println("This request has opted out of NET.");
} }
String RG = (String) Lrequest.get("rg"); String RG = (String) Lrequest.get("rg");