org.fuchss.objectcasket.objectpacker.PackerPort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-casket Show documentation
Show all versions of object-casket Show documentation
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.
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