mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Add getFormParam and getQueryParam methods, for common use-case of single-value
This commit is contained in:
@ -26,6 +26,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.processes.ProcessState;
|
import com.kingsrook.qqq.backend.core.model.actions.processes.ProcessState;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.processes.QProcessPayload;
|
import com.kingsrook.qqq.backend.core.model.actions.processes.QProcessPayload;
|
||||||
|
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
@ -71,6 +72,46 @@ public class ProcessBasedRouterPayload extends QProcessPayload
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/***************************************************************************
|
||||||
|
** for the common use-case, get a single formParam by name (vs the list that the
|
||||||
|
** actual proper formal interface would give).
|
||||||
|
***************************************************************************/
|
||||||
|
public String getFormParam(String name)
|
||||||
|
{
|
||||||
|
if(formParams != null)
|
||||||
|
{
|
||||||
|
List<String> values = formParams.get(name);
|
||||||
|
if(CollectionUtils.nullSafeHasContents(values))
|
||||||
|
{
|
||||||
|
return values.get(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/***************************************************************************
|
||||||
|
** for the common use-case, get a single queryParam by name (vs the list that the
|
||||||
|
** actual proper formal interface would give).
|
||||||
|
***************************************************************************/
|
||||||
|
public String getQueryParam(String name)
|
||||||
|
{
|
||||||
|
if(queryParams != null)
|
||||||
|
{
|
||||||
|
List<String> values = queryParams.get(name);
|
||||||
|
if(CollectionUtils.nullSafeHasContents(values))
|
||||||
|
{
|
||||||
|
return values.get(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** Getter for path
|
** Getter for path
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
Reference in New Issue
Block a user