ch.inss.joaswizard.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joaswizard Show documentation
Show all versions of joaswizard Show documentation
Jo as wizard helps to create an OAS3 specification including all CRUD operations from Yaml formatted text.
package ch.inss.joaswizard;
public interface Constants {
String sep = System.getProperty("file.separator");
String nexLine = System.getProperty("line.separator");
String CURRENT_FOLDER = "." + sep;
String DEFAULT_OUTPUT_FILE = "openapi.yaml";
String UNDEFINED = "undefined";
// String FROMFILE = "file";
String fullCrudTemplate = "fullCrud.yaml";
String pathComponentCrudTemplate = "pathsCrud.yaml";
// String getTemplate = "getIdgetAll.yaml";
String schemaTemplate = "schema.yaml";
String componentsErrorTemplate = "componentsErrorModel.yaml";
String infoTemplate = "info.yaml";
String OBJECTNAME = "objectName";
String[] DATATYPELIST = {"integer","number","string","boolean"};
String ERROR = "Error";
}