de.mvbonline.tools.restapidoc.model.ApiObjectFieldDoc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restapi-doc Show documentation
Show all versions of restapi-doc Show documentation
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 ApiObjectFieldDoc {
private String name;
private String type;
private boolean multiple;
private String description;
public ApiObjectFieldDoc() {
super();
}
public String getDescription() {
return description;
}
public String getName() {
return name;
}
public String getType() {
return type;
}
public boolean isMultiple() {
return multiple;
}
public void setDescription(String description) {
this.description = description;
}
public void setMultiple(boolean multiple) {
this.multiple = multiple;
}
public void setName(String name) {
this.name = name;
}
public void setType(String type) {
this.type = type;
}
}