org.basex.query.func.rest.RestWadl Maven / Gradle / Ivy
The newest version!
package org.basex.query.func.rest;
import org.basex.http.web.*;
import org.basex.query.*;
import org.basex.query.func.*;
import org.basex.query.value.item.*;
import org.basex.util.*;
/**
* Function implementation.
*
* @author BaseX Team 2005-24, BSD License
* @author Christian Gruen
*/
public final class RestWadl extends ApiFunc {
@Override
public Item item(final QueryContext qc, final InputInfo ii) throws QueryException {
return WebModules.get(qc.context).wadl(request(qc), qc.context);
}
}