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

io.swagger.models.SwaggerBootstrapUi Maven / Gradle / Ivy

Go to download

Swagger-Bootstrap-UI is the front of the UI Swagger implementation, using jQuery+bootstrap implementation, the purpose is to replace the default UI Swagger implementation of the Swagger-UI, so that the document is more friendly...

The newest version!
/*
 * Copyright (C) 2018 Zhejiang xiaominfo Technology CO.,LTD.
 * All rights reserved.
 * Official Web Site: http://www.xiaominfo.com.
 * Developer Web Site: http://open.xiaominfo.com.
 */

package io.swagger.models;

import java.util.ArrayList;
import java.util.List;

/***
 *
 * @since:swagger-bootstrap-ui 1.8.5
 * @author [email protected] 
 * 2018/10/11 21:06
 */
public class SwaggerBootstrapUi {

    /***
     * tag排序属性
     */
    protected List tagSortLists=new ArrayList<>();

    /***
     * path排序
     */
    private List pathSortLists=new ArrayList<>();

    /***
     * 自定义菜单内容
     */
    private List markdownFiles;

    /***
     * 开启增强失败,错误原因
     */
    private String errorMsg;

    public List getPathSortLists() {
        return pathSortLists;
    }

    public void setPathSortLists(List pathSortLists) {
        this.pathSortLists = pathSortLists;
    }

    public List getTagSortLists() {
        return tagSortLists;
    }

    public void setTagSortLists(List tagSortLists) {
        this.tagSortLists = tagSortLists;
    }


    public String getErrorMsg() {
        return errorMsg;
    }

    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }


    public List getMarkdownFiles() {
        return markdownFiles;
    }

    public void setMarkdownFiles(List markdownFiles) {
        this.markdownFiles = markdownFiles;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy