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

io.automatiko.engine.codegen.decision.DMNResource Maven / Gradle / Ivy

The newest version!

package io.automatiko.engine.codegen.decision;

import java.nio.file.Path;

import org.kie.dmn.api.core.DMNModel;

public class DMNResource {
	private final DMNModel dmnModel;
	private final Path path;

	public DMNResource(DMNModel dmnModel, Path path) {
		this.dmnModel = dmnModel;
		this.path = path;
	}

	public DMNModel getDmnModel() {
		return dmnModel;
	}

	public Path getPath() {
		return path;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy