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

de.mvbonline.tools.restapidoc.model.ApiParamDoc Maven / Gradle / Ivy

Go to download

Creates documentation for a spring mvc RESTful api. Output is reStructuredText for sphinx using sphinxcontrib.httpdomain

The newest version!
package de.mvbonline.tools.restapidoc.model;

public class ApiParamDoc {
    private String name;
    private String description;
    private String type;
    private boolean required;

    public ApiParamDoc() {
        super();
    }

    public ApiParamDoc(String name, String description, String type, boolean required) {
        super();
        this.name = name;
        this.description = description;
        this.type = type;
        this.required = required;
    }

    public String getDescription() {
        return description;
    }

    public String getName() {
        return name;
    }

    public String getType() {
        return type;
    }

    public boolean isRequired() {
        return required;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy