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

org.nakedobjects.metamodel.commons.component.SessionScopedComponent Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.commons.component;

/**
 * Indicate that the implementing component is scoped at the session level (for a single user) and 
 * might also need to be "opened" or "closed" at the start/end of the session.
 * 
 * 

* Analogous to Hibernate's Session. * * @see ApplicationScopedComponent * @see TransactionScopedComponent */ public interface SessionScopedComponent extends Component { /** * Indicates to the component that it is to initialise itself as it will soon be receiving requests. */ void open(); /** * Indicates to the component that no more requests will be made of it and it can safely release any * services it has hold of. */ void close(); } // Copyright (c) Naked Objects Group Ltd.





© 2015 - 2024 Weber Informatics LLC | Privacy Policy