org.eclipse.persistence.jpa.JpaEntityManagerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.persistence.jpa Show documentation
Show all versions of org.eclipse.persistence.jpa Show documentation
EclipseLink build based upon Git transaction ad5b7c6b2a
/*
* Copyright (c) 2011, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// tware - initial implementation as part of extensibility feature
// 05/26/2016-2.7 Tomas Kraus
// - 494610: Session Properties map should be Map
package org.eclipse.persistence.jpa;
import jakarta.persistence.EntityManagerFactory;
import java.util.Map;
import org.eclipse.persistence.internal.jpa.EntityManagerFactoryDelegate;
import org.eclipse.persistence.internal.sessions.DatabaseSessionImpl;
import org.eclipse.persistence.sessions.broker.SessionBroker;
import org.eclipse.persistence.sessions.server.ServerSession;
/**
*
* Purpose: Defines the Interface for EclipseLink extensions to the EntityManagerFactory
*
* @see jakarta.persistence.EntityManagerFactory
*/
public interface JpaEntityManagerFactory extends EntityManagerFactory, AutoCloseable {
/**
* Returns the DatabaseSession that the Factory will be using and
* initializes it if it is not available.
*/
DatabaseSessionImpl getDatabaseSession();
/**
* Returns the ServerSession that the Factory will be using and
* initializes it if it is not available.
*/
ServerSession getServerSession();
/**
* Returns the SessionBroker that the Factory will be using and
* initializes it if it is not available.
*
* Calls to this method should only be made on entity managers
* representing composite persistence units.
*/
SessionBroker getSessionBroker();
/**
* Gets the underlying implementation of the EntityManagerFactory.
* This method will return a version of EntityManagerFactory that is
* based on the available metadata at the time it is called. Future calls
* to refresh will not affect that metadata on this EntityManagerFactory.
*/
EntityManagerFactoryDelegate unwrap();
/**
* As this EntityManagerFactory to refresh itself. This will cause the
* underlying EntityManagerFactory implementation to be dropped and a new one
* to be bootstrapped. Existing EntityManagers will continue to use the old implementation
*/
void refreshMetadata(Map properties);
}