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

com.jwebmp.guicedpersistence.readers.eclipselink.EclipseLinkPropertiesReader Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
package com.jwebmp.guicedpersistence.readers.eclipselink;

import com.jwebmp.guicedpersistence.services.PropertiesEntityManagerReader;
import com.oracle.jaxb21.PersistenceUnit;

import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

public class EclipseLinkPropertiesReader
		implements PropertiesEntityManagerReader
{
	@Override
	public Map processProperties(PersistenceUnit persistenceUnit, Properties incomingProperties)
	{
		Map output = new HashMap<>();
		output.putIfAbsent("eclipselink.weaving", "static");
		return output;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy