From ca33b28f7a1fd0410bf62ecfa65024736e7a415f Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Fri, 23 May 2025 15:03:30 -0500 Subject: [PATCH] Add Map of "otherValues" --- .../SearchPossibleValueSourceInput.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/actions/values/SearchPossibleValueSourceInput.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/actions/values/SearchPossibleValueSourceInput.java index 8976a176..6bbb3dc9 100644 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/actions/values/SearchPossibleValueSourceInput.java +++ b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/actions/values/SearchPossibleValueSourceInput.java @@ -25,6 +25,7 @@ package com.kingsrook.qqq.backend.core.model.actions.values; import java.io.Serializable; import java.util.ArrayList; import java.util.List; +import java.util.Map; import com.kingsrook.qqq.backend.core.model.actions.AbstractActionInput; import com.kingsrook.qqq.backend.core.model.actions.tables.query.QQueryFilter; @@ -40,6 +41,8 @@ public class SearchPossibleValueSourceInput extends AbstractActionInput implemen private List idList; private List labelList; + private Map otherValues; + private Integer skip = 0; private Integer limit = 250; @@ -284,6 +287,7 @@ public class SearchPossibleValueSourceInput extends AbstractActionInput implemen } + /******************************************************************************* ** Getter for labelList *******************************************************************************/ @@ -313,4 +317,35 @@ public class SearchPossibleValueSourceInput extends AbstractActionInput implemen return (this); } + + + /******************************************************************************* + ** Getter for otherValues + *******************************************************************************/ + public Map getOtherValues() + { + return (this.otherValues); + } + + + + /******************************************************************************* + ** Setter for otherValues + *******************************************************************************/ + public void setOtherValues(Map otherValues) + { + this.otherValues = otherValues; + } + + + + /******************************************************************************* + ** Fluent setter for otherValues + *******************************************************************************/ + public SearchPossibleValueSourceInput withOtherValues(Map otherValues) + { + this.otherValues = otherValues; + return (this); + } + }