de.mvbonline.tools.restapidoc.model.ApiResponseObjectDoc 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 ApiResponseObjectDoc {
private String object;
public ApiResponseObjectDoc(String object) {
super();
this.object = object;
}
public String getObject() {
return object;
}
}