QQQ-27: added getValueDate utility method, fixed header comment

This commit is contained in:
Tim Chamberlain
2022-07-26 10:07:14 -05:00
parent d51b868ba3
commit cfa9cec930
2 changed files with 14 additions and 2 deletions

View File

@ -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);
}
}
}

View File

@ -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
{