All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.inss.joaswizard.Constants Maven / Gradle / Ivy

Go to download

Jo as wizard helps to create an OAS3 specification including all CRUD operations from Yaml formatted text.

There is a newer version: 0.9.10
Show newest version
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";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy