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

com.meluzin.tibcobwutils.earcomparer.fullconfig.model.Environment Maven / Gradle / Ivy

package com.meluzin.tibcobwutils.earcomparer.fullconfig.model;

import java.nio.file.Path;

public class Environment extends Value {
	private Path path;
	public Environment(Path path) {
		super(path.getFileName().toString());
		this.path = path;
	}
	
	public Path getPath() {
		return path;
	}
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy