All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webpieces.plugins.hsqldb.H2DbConfig Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.webpieces.plugins.hsqldb;

public class H2DbConfig {

	private int port = 0;
	private String urlPath;

	public H2DbConfig(int port, String urlPath) {
		super();
		this.port = port;
		this.urlPath = urlPath;
	}

	public int getPort() {
		return port;
	}

	public String getUrlPath() {
		return urlPath;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy