mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Make checkstyle pass
This commit is contained in:
@ -19,6 +19,13 @@ import com.kingsrook.qqq.backend.core.model.metadata.QFieldMetaData;
|
|||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public interface QProcessCallback
|
public interface QProcessCallback
|
||||||
{
|
{
|
||||||
|
/*******************************************************************************
|
||||||
|
** Get the filter query for this callback.
|
||||||
|
*******************************************************************************/
|
||||||
QQueryFilter getQueryFilter();
|
QQueryFilter getQueryFilter();
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Get the field values for this callback.
|
||||||
|
*******************************************************************************/
|
||||||
Map<String, Serializable> getFieldValues(List<QFieldMetaData> fields);
|
Map<String, Serializable> getFieldValues(List<QFieldMetaData> fields);
|
||||||
}
|
}
|
||||||
|
@ -10,9 +10,12 @@ import com.kingsrook.qqq.backend.core.model.actions.processes.RunFunctionResult;
|
|||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
** TODO - document!
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public interface FunctionBody
|
public interface FunctionBody
|
||||||
{
|
{
|
||||||
|
/*******************************************************************************
|
||||||
|
** TODO - document!
|
||||||
|
*******************************************************************************/
|
||||||
RunFunctionResult run(RunFunctionRequest runFunctionRequest);
|
RunFunctionResult run(RunFunctionRequest runFunctionRequest);
|
||||||
}
|
}
|
||||||
|
@ -125,16 +125,6 @@ public class QInstance
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
|
||||||
**
|
|
||||||
*******************************************************************************/
|
|
||||||
public void addProcess(QProcessMetaData process)
|
|
||||||
{
|
|
||||||
this.processes.put(process.getName(), process);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
@ -171,6 +161,16 @@ public class QInstance
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
public void addProcess(QProcessMetaData process)
|
||||||
|
{
|
||||||
|
this.processes.put(process.getName(), process);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
Reference in New Issue
Block a user