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

com.googlecode.openbox.db.DbId Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
package com.googlecode.openbox.db;

public class DbId {
	private String dbId;

	public static DbId newInstance(String dbId) {
		return new DbId(dbId);
	}

	private DbId(String dbId) {
		this.dbId = dbId;
	}

	public String getDbId() {
		return dbId;
	}

	public void setDbId(String dbId) {
		this.dbId = dbId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy