org.webpieces.plugins.hsqldb.ServerConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-h2db Show documentation
Show all versions of plugin-h2db Show documentation
Webpieces in-memory database plugin
package org.webpieces.plugins.hsqldb;
public class ServerConfig {
private int port;
public void setPort(int port) {
this.port = port;
}
public int getPort() {
return port;
}
}