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

br.com.persistence.model.DatabaseScoped Maven / Gradle / Ivy

There is a newer version: 2.1.2-RC
Show newest version
package br.com.persistence.model;

public enum DatabaseScoped {
	Application(false), Session(true);

	private boolean canClose;

	private DatabaseScoped(boolean canClose) {
		this.canClose = canClose;
	}

	public boolean isCanClose() {
		return canClose;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy