From 5e7b6f40df6afb78b149af0b00dfc255e07e4fae Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Wed, 26 Oct 2022 18:09:07 -0500 Subject: [PATCH] Add path to icon; other cleanup --- .../core/model/metadata/layout/QIcon.java | 35 +++ .../general/BasepullConfiguration.java | 211 ------------------ qqq-dev-tools/bin/xbar-latest-snapshots.sh | 1 + 3 files changed, 36 insertions(+), 211 deletions(-) delete mode 100644 qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/general/BasepullConfiguration.java diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/metadata/layout/QIcon.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/metadata/layout/QIcon.java index 92e374c6..cfc2aa40 100644 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/metadata/layout/QIcon.java +++ b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/metadata/layout/QIcon.java @@ -34,6 +34,7 @@ package com.kingsrook.qqq.backend.core.model.metadata.layout; public class QIcon { private String name; + private String path; @@ -88,4 +89,38 @@ public class QIcon return (this); } + + + /******************************************************************************* + ** Getter for path + ** + *******************************************************************************/ + public String getPath() + { + return path; + } + + + + /******************************************************************************* + ** Setter for path + ** + *******************************************************************************/ + public void setPath(String path) + { + this.path = path; + } + + + + /******************************************************************************* + ** Fluent setter for path + ** + *******************************************************************************/ + public QIcon withPath(String path) + { + this.path = path; + return (this); + } + } diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/general/BasepullConfiguration.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/general/BasepullConfiguration.java deleted file mode 100644 index f2d74fba..00000000 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/general/BasepullConfiguration.java +++ /dev/null @@ -1,211 +0,0 @@ -/* - * QQQ - Low-code Application Framework for Engineers. - * Copyright (C) 2021-2022. Kingsrook, LLC - * 651 N Broad St Ste 205 # 6917 | Middletown DE 19709 | United States - * contact@kingsrook.com - * https://github.com/Kingsrook/ - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package com.kingsrook.qqq.backend.core.processes.implementations.general; - - -import java.io.Serializable; - - -/******************************************************************************* - ** Class for storing all basepull configuration data - ** - *******************************************************************************/ -public class BasepullConfiguration implements Serializable -{ - private String tableName; - private String keyField; - private String keyValue; - - private String lastRunTimeFieldName; - private Integer hoursBackForInitialTimestamp; - - - - /******************************************************************************* - ** Getter for tableName - ** - *******************************************************************************/ - public String getTableName() - { - return tableName; - } - - - - /******************************************************************************* - ** Setter for tableName - ** - *******************************************************************************/ - public void setTableName(String tableName) - { - this.tableName = tableName; - } - - - - /******************************************************************************* - ** Fluent setter for tableName - ** - *******************************************************************************/ - public BasepullConfiguration withTableName(String tableName) - { - this.tableName = tableName; - return (this); - } - - - - /******************************************************************************* - ** Getter for keyField - ** - *******************************************************************************/ - public String getKeyField() - { - return keyField; - } - - - - /******************************************************************************* - ** Setter for keyField - ** - *******************************************************************************/ - public void setKeyField(String keyField) - { - this.keyField = keyField; - } - - - - /******************************************************************************* - ** Fluent setter for keyField - ** - *******************************************************************************/ - public BasepullConfiguration withKeyField(String keyField) - { - this.keyField = keyField; - return (this); - } - - - - /******************************************************************************* - ** Getter for keyValue - ** - *******************************************************************************/ - public String getKeyValue() - { - return keyValue; - } - - - - /******************************************************************************* - ** Setter for keyValue - ** - *******************************************************************************/ - public void setKeyValue(String keyValue) - { - this.keyValue = keyValue; - } - - - - /******************************************************************************* - ** Fluent setter for keyValue - ** - *******************************************************************************/ - public BasepullConfiguration withKeyValue(String keyValue) - { - this.keyValue = keyValue; - return (this); - } - - - - /******************************************************************************* - ** Getter for lastRunTimeFieldName - ** - *******************************************************************************/ - public String getLastRunTimeFieldName() - { - return lastRunTimeFieldName; - } - - - - /******************************************************************************* - ** Setter for lastRunTimeFieldName - ** - *******************************************************************************/ - public void setLastRunTimeFieldName(String lastRunTimeFieldName) - { - this.lastRunTimeFieldName = lastRunTimeFieldName; - } - - - - /******************************************************************************* - ** Fluent setter for lastRunTimeFieldName - ** - *******************************************************************************/ - public BasepullConfiguration withLastRunTimeFieldName(String lastRunTimeFieldName) - { - this.lastRunTimeFieldName = lastRunTimeFieldName; - return (this); - } - - - - /******************************************************************************* - ** Getter for hoursBackForInitialTimestamp - ** - *******************************************************************************/ - public Integer getHoursBackForInitialTimestamp() - { - return hoursBackForInitialTimestamp; - } - - - - /******************************************************************************* - ** Setter for hoursBackForInitialTimestamp - ** - *******************************************************************************/ - public void setHoursBackForInitialTimestamp(Integer hoursBackForInitialTimestamp) - { - this.hoursBackForInitialTimestamp = hoursBackForInitialTimestamp; - } - - - - /******************************************************************************* - ** Fluent setter for hoursBackForInitialTimestamp - ** - *******************************************************************************/ - public BasepullConfiguration withHoursBackForInitialTimestamp(Integer hoursBackForInitialTimestamp) - { - this.hoursBackForInitialTimestamp = hoursBackForInitialTimestamp; - return (this); - } - -} diff --git a/qqq-dev-tools/bin/xbar-latest-snapshots.sh b/qqq-dev-tools/bin/xbar-latest-snapshots.sh index 990ad917..8ff90204 100755 --- a/qqq-dev-tools/bin/xbar-latest-snapshots.sh +++ b/qqq-dev-tools/bin/xbar-latest-snapshots.sh @@ -31,5 +31,6 @@ function doOne doOne "qqq-backend-core " doOne "qqq-backend-module-rdbms " doOne "qqq-backend-module-filesystem " +doOne "qqq-backend-module-api " doOne "qqq-middleware-picocli " doOne "qqq-middleware-javalin "