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

com.greenpepper.samples.application.phonebook.SessionService Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.samples.application.phonebook;

import org.hibernate.Session;

/**
 * 

* Copyright (c) 2005 Pyxis technologies inc. All Rights Reserved. * * @author gcarey * @version $Id: $Id */ public interface SessionService { /** * Starts the database session */ void startSession(); /** * Retrieves the database session * * @return the database session */ Session getSession(); /** * Ends the database session */ void closeSession(); /** * Starts a transaction */ void beginTransaction(); /** * Commits the transaction. */ void commitTransaction(); /** * Rollbacks the transaction. */ void rollbackTransaction(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy