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

schemacrawler.spring.boot.SchemaCrawlerProperties Maven / Gradle / Ivy

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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy