![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.filesystem.Path Maven / Gradle / Ivy
package org.infinispan.server.filesystem;
import java.io.File;
/**
* @author Tristan Tarrant <[email protected]>
* @since 10.0
**/
public class Path {
private final String name;
private final File path;
public Path(String name, File path) {
this.name = name;
this.path = path;
}
public String getName() {
return name;
}
public File getPath() {
return path;
}
public String toString() {
return "Path{" +
"name='" + name + '\'' +
", path=" + path +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy