org.webpieces.plugins.hsqldb.ServerConfig Maven / Gradle / Ivy
package org.webpieces.plugins.hsqldb;
public class ServerConfig {
private int port;
public void setPort(int port) {
this.port = port;
}
public int getPort() {
return port;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy