io.swagger.model.ApiDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-all Show documentation
Show all versions of swagger-all Show documentation
swagger-all is a rebundled verison of Swagger as one OSGi bundle.
The newest version!
package io.swagger.model;
/**
* legacy support for swagger 1.2 deployments
**/
@Deprecated
public class ApiDescription {
private String path;
private String method;
public ApiDescription(String path, String method) {
this.setPath(path);
this.setMethod(method);
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
}