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

com.xlrit.gears.plugin.jasper.JasperProperties Maven / Gradle / Ivy

package com.xlrit.gears.plugin.jasper;

import java.io.File;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import lombok.Data;

@Data
@Component
@ConfigurationProperties(prefix = "gears.jasper")
public class JasperProperties {
	private boolean debug             = false;
	private File dir                  = new File("target/jasper");
	private DatasourceMode datasource = DatasourceMode.DEFAULT;

	public enum DatasourceMode {
		DEFAULT, JSON
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy