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

org.nakedobjects.runtime.persistence.package-info Maven / Gradle / Ivy

The newest version!
/**
 * Object Persistor API.
 * 
 * 

* Concrete implementations are in the persistor-xxx modules. The * role of the {@link PersistenceSession} is to manage the lifecycle of * domain objects, creating them, retrieving them, persisting them, deleting them. * However, this object management role applies when deployed in client/server mode * as well as standalone. * *

* There are therefore just two implementations: *

    *
  • the persistor-objectstore implementation delegates to an NakedObjectStore * API that actually persists objects to some persistent store (such as XML or RDBMS)
  • *
  • the persistor-proxy implementation in effect provides the client-side remoting library, * using the remoting protocol defined in the remoting-command module. *
* *

* Note that the {@link PersistenceSession} both extends a number of superinterfaces as well as uses implementations of * various helpers (for example {@link org.nakedobjects.metamodel.services.ServicesInjector} and {@link org.nakedobjects.runtime.persistence.oidgenerator.OidGenerator}). * These superinterfaces and helper interfaces are not normally implemented directly, and it is the * responsibility of the {@link PersistenceMechanismInstaller} to ensure that the correct helper objects * are passed to the {@link PersistenceSession} implementation. */ package org.nakedobjects.runtime.persistence;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy