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

org.fuchss.objectcasket.objectpacker.PackerPort Maven / Gradle / Ivy

Go to download

Object Casket is a simple O/R mapper that can be used together with the Java Persistence API (JPA). The aim is to provide a simple solution for small projects to store multi-related entities in a simple manner.

There is a newer version: 0.20.17
Show newest version
package org.fuchss.objectcasket.objectpacker;

import org.fuchss.objectcasket.objectpacker.port.SessionManager;

/**
 * The main access point to work with the Object Casket system. Via the static
 * {@link PackerPort#PORT} one can access the {@link SessionManager session
 * manager} the central object to work with the Object Casket system.
 */
public interface PackerPort {

	/**
	 * Via this port one can access the {@link SessionManager session manager} the
	 * central object to work with the Object Casket system.
	 */
	PackerPort PORT = new ObjectPackerImpl();

	/**
	 * This operation returns the {@link SessionManager session manager} the central
	 * object to work with the Object Casket system.
	 *
	 * @return the {@link SessionManager session manager}.
	 */
	SessionManager sessionManager();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy