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

ng.openscoring-service.1.4.1.source-code.reference.conf Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
application {
	// List of JAX-RS Component class names that must be registered
	componentClasses = [
		"org.openscoring.service.filters.NetworkSecurityContextFilter",
		"org.openscoring.service.filters.ServiceIdentificationFilter"
	]
}

modelRegistry {
	// Model evaluator factory class name
	// Must declare a static newInstance() method or a public default constructor
	modelEvaluatorFactoryClass = "org.jpmml.evaluator.ModelEvaluatorFactory"

	// Value factory factory class name
	// Must declare a static newInstance() method or a public default constructor
	valueFactoryFactoryClass = "org.jpmml.evaluator.ValueFactoryFactory"

	// List of Visitor class names that must be applied to the PMML class model object
	visitorClasses = [
		// "org.jpmml.model.visitors.LocatorNullifier",
		"org.jpmml.evaluator.visitors.ElementOptimizerBattery",
		"org.jpmml.model.visitors.AttributeInternerBattery",
		"org.jpmml.evaluator.visitors.ElementInternerBattery",
		"org.jpmml.model.visitors.ArrayListTransformer"
	]

	// Should the uploaded PMML documents be validated against the PMML XML Schema Definition (XSD) resource or not?
	// Validation is a one time operation that takes place during model deployment. It does not affect model evaluation or undeployment in any way.
	validate = false
}

networkSecurityContextFilter {
	// List of trusted IP addresses. An empty list defaults to all local network IP addresses.
	// A client that originates from a trusted IP address (as indicated by the value of the CGI variable REMOTE_ADDR) is granted the "admin" role.
	trustedAddresses = []
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy