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

org.infinispan.server.filesystem.Path Maven / Gradle / Ivy

There is a newer version: 15.1.3.Final
Show newest version
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