Merge pull request #77 from Kingsrook/feature/quartz-scheduler

Feature/quartz scheduler
This commit is contained in:
2024-03-21 10:04:00 -05:00
committed by GitHub
135 changed files with 10057 additions and 875 deletions

View File

@ -1686,7 +1686,7 @@ public class GenerateOpenApiSpecAction extends AbstractQActionFunction<GenerateO
return switch(type)
{
case STRING, DATE, TIME, DATE_TIME, TEXT, HTML, PASSWORD, BLOB -> "string";
case INTEGER -> "integer";
case INTEGER, LONG -> "integer"; // todo - we could give 'format' w/ int32 & int64 to further specify
case DECIMAL -> "number";
case BOOLEAN -> "boolean";
};

View File

@ -40,6 +40,17 @@ public class ApiInstanceMetaDataContainer extends QSupplementalInstanceMetaData
/*******************************************************************************
**
*******************************************************************************/
@Override
public String getName()
{
return ApiSupplementType.NAME;
}
/*******************************************************************************
** Constructor
**