mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
QQQ-27: added getValueDate utility method, fixed header comment
This commit is contained in:
@ -23,6 +23,7 @@ package com.kingsrook.qqq.backend.core.model.actions.processes;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
@ -336,6 +337,17 @@ public class RunBackendStepInput extends AbstractActionInput
|
||||
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
** Getter for a single field's date value
|
||||
**
|
||||
*******************************************************************************/
|
||||
public LocalDate getValueDate(String fieldName)
|
||||
{
|
||||
return ((LocalDate) getValue(fieldName));
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
** Getter for a single field's value
|
||||
**
|
||||
@ -394,4 +406,4 @@ public class RunBackendStepInput extends AbstractActionInput
|
||||
}
|
||||
return (asyncJobCallback);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ import com.kingsrook.qqq.backend.core.model.metadata.QAuthenticationType;
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
** Meta-data to provide details of an RDBMS backend (e.g., connection params)
|
||||
** Meta-data to provide details of an Auth0 Authentication module
|
||||
*******************************************************************************/
|
||||
public class Auth0AuthenticationMetaData extends QAuthenticationMetaData
|
||||
{
|
||||
|
Reference in New Issue
Block a user