nz.ac.auckland.scriptella.driver.http.Driver Maven / Gradle / Ivy
package nz.ac.auckland.scriptella.driver.http;
import scriptella.spi.Connection;
import scriptella.spi.ConnectionParameters;
import scriptella.spi.DialectIdentifier;
import scriptella.spi.ScriptellaDriver;
/**
* @author Jack W Finlay - [email protected]
*/
public class Driver implements ScriptellaDriver {
public static final DialectIdentifier DIALECT = new DialectIdentifier("HTTP", "1.1");
public Connection connect(ConnectionParameters connectionParameters) {
return new HTTPConnection(connectionParameters);
}
@Override
public String toString() {
return "Http driver";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy