schemacrawler.spring.boot.SchemaCrawlerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-schemacrawler Show documentation
Show all versions of spring-boot-starter-schemacrawler Show documentation
Spring Boot Starter For Schemacrawler
The newest version!
package schemacrawler.spring.boot;
import java.util.ArrayList;
import java.util.List;
import org.springframework.boot.context.properties.ConfigurationProperties;
import schemacrawler.spring.boot.ext.DatabaseSchemaCrawlerOptions;
@ConfigurationProperties(SchemaCrawlerProperties.PREFIX)
public class SchemaCrawlerProperties {
public static final String PREFIX = "spring.schemacrawler";
/** Enable SchemaCrawler. */
private boolean enabled = false;
/**
* Database SchemaCrawlerOptions
*/
private List crawlerOptions = new ArrayList();
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public List getCrawlerOptions() {
return crawlerOptions;
}
public void setCrawlerOptions(List crawlerOptions) {
this.crawlerOptions = crawlerOptions;
}
}