![JAR search and dependency download from the Maven repository](/logo.png)
org.basex.http.web.WebPath Maven / Gradle / Ivy
package org.basex.http.web;
/**
* This abstract class represents the path of a Web function.
*
* @author BaseX Team, 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 - 2025 Weber Informatics LLC | Privacy Policy