Package org.apache.openjpa.jdbc.meta
Class MetaDataPlusMappingFactory
- java.lang.Object
-
- org.apache.openjpa.meta.DelegatingMetaDataFactory
-
- org.apache.openjpa.jdbc.meta.MetaDataPlusMappingFactory
-
- All Implemented Interfaces:
MetaDataFactory
,MetaDataModes
public class MetaDataPlusMappingFactory extends DelegatingMetaDataFactory
Combines two internalMetaDataFactory
instances -- one for metadata, one for mappings -- into a singleMetaDataFactory
facade.- Author:
- Abe White
-
-
Field Summary
-
Fields inherited from interface org.apache.openjpa.meta.MetaDataFactory
STORE_DEFAULT, STORE_PER_CLASS, STORE_VERBOSE
-
Fields inherited from interface org.apache.openjpa.meta.MetaDataModes
MODE_ALL, MODE_ANN_MAPPING, MODE_MAPPING, MODE_MAPPING_INIT, MODE_META, MODE_NONE, MODE_QUERY
-
-
Constructor Summary
Constructors Constructor Description MetaDataPlusMappingFactory(MetaDataFactory meta, MetaDataFactory map)
Constructor; supply delegates.MetaDataPlusMappingFactory(MetaDataFactory meta, MetaDataFactory map, OpenJPAConfiguration conf)
Constructor, supply delegates and Configuration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addClassExtensionKeys(java.util.Collection exts)
Add any extension keys used by this instance to the given set.void
addFieldExtensionKeys(java.util.Collection exts)
Add any extension keys used by this instance to the given set.void
clear()
Clear any internal caches.boolean
drop(java.lang.Class[] cls, int mode, java.lang.ClassLoader envLoader)
Drop the metadata for the given classes in the given mode(s).MetaDataFactory
getInnermostMappingDelegate()
Innermost mapping delegate.MetaDataFactory
getMappingDelegate()
Mapping factory delegate.java.util.Set
getPersistentTypeNames(boolean classpath, java.lang.ClassLoader envLoader)
Return all persistent class names, using the metadata locations supplied in configuration, optionally scanning the classpath.void
load(java.lang.Class cls, int mode, java.lang.ClassLoader envLoader)
Load metadata for the given class in the given mode(s).void
setRepository(MetaDataRepository repos)
Set the repository to load metadata into.void
setStoreDirectory(java.io.File dir)
Base directory for storing metadata.void
setStoreMode(int store)
Storage mode.void
setStrict(boolean strict)
If true, I/O's must exactly obey the mode directives given, and may not load additional information.boolean
store(ClassMetaData[] metas, QueryMetaData[] queries, SequenceMetaData[] seqs, int mode, java.util.Map output)
Store the given metadata.-
Methods inherited from class org.apache.openjpa.meta.DelegatingMetaDataFactory
getDefaults, getDelegate, getInnermostDelegate, getManagedClass, getManagedClassName, getMetaModelClassName, getQueryScope, getResultSetMappingScope, isMetaClass, loadXMLMetaData, newClassArgParser
-
-
-
-
Constructor Detail
-
MetaDataPlusMappingFactory
public MetaDataPlusMappingFactory(MetaDataFactory meta, MetaDataFactory map)
Constructor; supply delegates.
-
MetaDataPlusMappingFactory
public MetaDataPlusMappingFactory(MetaDataFactory meta, MetaDataFactory map, OpenJPAConfiguration conf)
Constructor, supply delegates and Configuration.- Parameters:
meta
- MetaFactory delegate, should not be null.map
- MappingFactory delegate, should not be null.conf
- Configuration in use. Used to determine whether delegates should use strict mode.
-
-
Method Detail
-
getMappingDelegate
public MetaDataFactory getMappingDelegate()
Mapping factory delegate.
-
getInnermostMappingDelegate
public MetaDataFactory getInnermostMappingDelegate()
Innermost mapping delegate.
-
setRepository
public void setRepository(MetaDataRepository repos)
Description copied from interface:MetaDataFactory
Set the repository to load metadata into. This method will be called before use.- Specified by:
setRepository
in interfaceMetaDataFactory
- Overrides:
setRepository
in classDelegatingMetaDataFactory
-
setStoreDirectory
public void setStoreDirectory(java.io.File dir)
Description copied from interface:MetaDataFactory
Base directory for storing metadata. May not be called.- Specified by:
setStoreDirectory
in interfaceMetaDataFactory
- Overrides:
setStoreDirectory
in classDelegatingMetaDataFactory
-
setStoreMode
public void setStoreMode(int store)
Description copied from interface:MetaDataFactory
Storage mode. May not be called.- Specified by:
setStoreMode
in interfaceMetaDataFactory
- Overrides:
setStoreMode
in classDelegatingMetaDataFactory
-
setStrict
public void setStrict(boolean strict)
Description copied from interface:MetaDataFactory
If true, I/O's must exactly obey the mode directives given, and may not load additional information.- Specified by:
setStrict
in interfaceMetaDataFactory
- Overrides:
setStrict
in classDelegatingMetaDataFactory
-
load
public void load(java.lang.Class cls, int mode, java.lang.ClassLoader envLoader)
Description copied from interface:MetaDataFactory
Load metadata for the given class in the given mode(s). If loading inMetaDataModes.MODE_QUERY
, the class may be null. Loaded metadata should be added directly to the repository. It should have its source mode set appropriately viaClassMetaData.setSourceMode(int)
.- Specified by:
load
in interfaceMetaDataFactory
- Overrides:
load
in classDelegatingMetaDataFactory
mode
- the mode to load metadata in: if mapping information is stored together with metadata, then you can load mapping data even if this mode only includesMODE_META
, so long as thestrict
property hasn't been set
-
store
public boolean store(ClassMetaData[] metas, QueryMetaData[] queries, SequenceMetaData[] seqs, int mode, java.util.Map output)
Description copied from interface:MetaDataFactory
Store the given metadata.- Specified by:
store
in interfaceMetaDataFactory
- Overrides:
store
in classDelegatingMetaDataFactory
mode
- hint about what aspects of the metadata have changedoutput
- if non-null, rather than storing metadata directly, add entries mapping each output destination such as aFile
to the planned output for that destination in string form- Returns:
- false if this factory is unable to store metadata
-
drop
public boolean drop(java.lang.Class[] cls, int mode, java.lang.ClassLoader envLoader)
Description copied from interface:MetaDataFactory
Drop the metadata for the given classes in the given mode(s).- Specified by:
drop
in interfaceMetaDataFactory
- Overrides:
drop
in classDelegatingMetaDataFactory
- Returns:
- false if any metadata could not be dropped
-
getPersistentTypeNames
public java.util.Set getPersistentTypeNames(boolean classpath, java.lang.ClassLoader envLoader)
Description copied from interface:MetaDataFactory
Return all persistent class names, using the metadata locations supplied in configuration, optionally scanning the classpath. Return null if no types are supplied and this factory is unable to scan the classpath. This method should not be used directly by outside code; useMetaDataRepository.getPersistentTypeNames(boolean, java.lang.ClassLoader)
instead.- Specified by:
getPersistentTypeNames
in interfaceMetaDataFactory
- Overrides:
getPersistentTypeNames
in classDelegatingMetaDataFactory
- See Also:
MetaDataRepository.getPersistentTypeNames(boolean, java.lang.ClassLoader)
,MetaDataRepository.loadPersistentTypes(boolean, java.lang.ClassLoader)
-
clear
public void clear()
Description copied from interface:MetaDataFactory
Clear any internal caches.- Specified by:
clear
in interfaceMetaDataFactory
- Overrides:
clear
in classDelegatingMetaDataFactory
-
addClassExtensionKeys
public void addClassExtensionKeys(java.util.Collection exts)
Description copied from interface:MetaDataFactory
Add any extension keys used by this instance to the given set.- Specified by:
addClassExtensionKeys
in interfaceMetaDataFactory
- Overrides:
addClassExtensionKeys
in classDelegatingMetaDataFactory
-
addFieldExtensionKeys
public void addFieldExtensionKeys(java.util.Collection exts)
Description copied from interface:MetaDataFactory
Add any extension keys used by this instance to the given set.- Specified by:
addFieldExtensionKeys
in interfaceMetaDataFactory
- Overrides:
addFieldExtensionKeys
in classDelegatingMetaDataFactory
-
-