cehckpoint - adding security to openapi spec

This commit is contained in:
2023-03-21 11:00:10 -05:00
parent 4a29898405
commit 90a7745246
12 changed files with 541 additions and 14 deletions

View File

@ -208,7 +208,7 @@ public class QJavalinImplementation
/*******************************************************************************
**
*******************************************************************************/
void startJavalinServer(int port)
public void startJavalinServer(int port)
{
// todo port from arg
// todo base path from arg? - and then potentially multiple instances too (chosen based on the root path??)
@ -221,6 +221,16 @@ public class QJavalinImplementation
/*******************************************************************************
**
*******************************************************************************/
public Javalin getJavalinService()
{
return (service);
}
/*******************************************************************************
**
*******************************************************************************/
@ -277,7 +287,7 @@ public class QJavalinImplementation
/*******************************************************************************
**
*******************************************************************************/
void stopJavalinServer()
public void stopJavalinServer()
{
service.stop();
}