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

org.eclipse.persistence.jpa.metadata.MetadataSource Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*******************************************************************************
 * Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0 
 * which accompanies this distribution. 
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at 
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * Contributors:
 *     05/05/2011-2.3 Chris Delahunt - Bug 344837: Extensibility - Metadata Repository
 *     02/27/2012-2.4 dclarke - Bug 373120:  Add persistence unit property overrides to Metadata Repository
 ******************************************************************************/
package org.eclipse.persistence.jpa.metadata;

import java.util.Map;

import org.eclipse.persistence.config.PersistenceUnitProperties;
import org.eclipse.persistence.internal.jpa.metadata.xml.XMLEntityMappings;
import org.eclipse.persistence.logging.SessionLog;

/**
 * Purpose: Interface used to support additional persistence unit
 * metadata being provided from outside of what was packaged within the
 * application. A MetadataSource will need to be registered with a persistence
 * unit.
 * 
 * @see PersistenceUnitProperties#METADATA_SOURCE
 * @author cdelahunt, dclarke
 * @since EclipseLink 2.3.0
 */
public interface MetadataSource {

    /**
     * PUBLIC: This method is responsible for returning additional persistence
     * unit property overrides. It is called on initial deployment of the
     * persistence unit and when the persistence unit is reloaded to allow
     * customization of the persistence unit above and beyond what is packaged
     * in the persistence.xml and what is code into the application.
     * 

* IMPORTANT: Although any property can be changed using this * approach it is important that users of this feature ensure compatible * configurations are supplied. As an example; overriding an application to * use RESOURCE_LOCAL when it was coded to use JTA would result in changes * not be written to the database. * * @since EclipseLink 2.4 */ public Map getPropertyOverrides(Map properties, ClassLoader classLoader, SessionLog log); /** * PUBLIC: This method is responsible for returning the object * representation of the object-relational mapping overrides. It is called * on initial deployment of the persistence unit and when the persistence * unit is reloaded to allow customization of the persistence unit above and * beyond what is packaged in the persistence.xml and what is code into the * application. * * IMPORTANT: This method is called during the predeploy stage * that is used both for weaving and runtime EMF deployment. Runtime * properties might not be available during weaving, and mapping options * that require weaving changes should not be used. For example adding a * lazy OneToOne mapping after weaving has already occurred will result in * an exception if they are expected to have been woven into the class. */ public XMLEntityMappings getEntityMappings(Map properties, ClassLoader classLoader, SessionLog log); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy