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

eu.miltema.slimdbsync.def.PrimaryKeyDef Maven / Gradle / Ivy

package eu.miltema.slimdbsync.def;

public class PrimaryKeyDef {
	public String table;
	public String column;
	public String constraintName;

	public PrimaryKeyDef(String table, String column, String constraintName) {
		this.table = table;
		this.column = column;
		this.constraintName = constraintName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy