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

org.basex.http.web.WebPath Maven / Gradle / Ivy

The newest version!
package org.basex.http.web;

/**
 * This abstract class represents the path of a Web function.
 *
 * @author BaseX Team 2005-24, BSD License
 * @author Johannes Finckh
 */
public abstract class WebPath {
  /** Path. */
  protected final String path;

  /**
   * Constructor.
   * @param path path
   */
  protected WebPath(final String path) {
    this.path = path;
  }

  @Override
  public final String toString() {
    return path;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy