io.swagger.jaxrs.config.AbstractScanner 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.
package io.swagger.jaxrs.config;
public abstract class AbstractScanner {
protected boolean prettyPrint = false;
public boolean getPrettyPrint() {
return prettyPrint;
}
public void setPrettyPrint(boolean shouldPrettyPrint) {
this.prettyPrint = shouldPrettyPrint;
}
}