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

io.swagger.jaxrs.config.AbstractScanner Maven / Gradle / Ivy

There is a newer version: 1.6.14
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy