Package org.apache.openjpa.meta
Class AbstractMetaDataFactory
java.lang.Object
org.apache.openjpa.meta.AbstractMetaDataFactory
- All Implemented Interfaces:
MetaDataFactory
,MetaDataModes
- Direct Known Subclasses:
AbstractCFMetaDataFactory
Abstract
MetaDataFactory
that provides default implementations
of many methods.- Author:
- Abe White
-
Field Summary
Modifier and TypeFieldDescriptionprotected File
protected Log
protected MetaDataRepository
protected int
protected boolean
protected Set
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
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add any extension keys used by this instance to the given set.void
Add any extension keys used by this instance to the given set.void
clear()
Clear any internal caches.boolean
drop
(Class[] cls, int mode, ClassLoader envLoader) Drop the metadata for the given classes in the given mode(s).getPersistentTypeNames
(boolean devpath, ClassLoader envLoader) Return all persistent class names, using the metadata locations supplied in configuration, optionally scanning the classpath.getQueryScope
(String queryName, ClassLoader loader) Return the type defining the given query name, if any.getResultSetMappingScope
(String resultSetMappingName, ClassLoader loader) Return the type defining the given result set mapping name, if any.Return a properly-configured class arg parser for our expected metadata format.void
setRepository
(MetaDataRepository repos) Set the repository to load metadata into.void
setStoreDirectory
(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.void
Set of semicolon-separated persistent type names supplied by user via auto-configuration.void
Set of persistent type names supplied by user.boolean
store
(ClassMetaData[] metas, QueryMetaData[] queries, SequenceMetaData[] seqs, int mode, Map<File, String> output) Store the given metadata.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.openjpa.meta.MetaDataFactory
getDefaults, getManagedClass, getManagedClassName, getMetaModelClassName, isMetaClass, load, loadXMLMetaData
-
Field Details
-
repos
-
log
-
dir
-
store
protected int store -
strict
protected boolean strict -
types
-
-
Constructor Details
-
AbstractMetaDataFactory
public AbstractMetaDataFactory()
-
-
Method Details
-
setTypes
Set of persistent type names supplied by user. -
setTypes
Set of semicolon-separated persistent type names supplied by user via auto-configuration. -
setRepository
Description copied from interface:MetaDataFactory
Set the repository to load metadata into. This method will be called before use.- Specified by:
setRepository
in interfaceMetaDataFactory
-
setStoreDirectory
Description copied from interface:MetaDataFactory
Base directory for storing metadata. May not be called.- Specified by:
setStoreDirectory
in interfaceMetaDataFactory
-
setStoreMode
public void setStoreMode(int store) Description copied from interface:MetaDataFactory
Storage mode. May not be called.- Specified by:
setStoreMode
in interfaceMetaDataFactory
-
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
-
store
public boolean store(ClassMetaData[] metas, QueryMetaData[] queries, SequenceMetaData[] seqs, int mode, Map<File, String> output) Description copied from interface:MetaDataFactory
Store the given metadata.- Specified by:
store
in interfaceMetaDataFactory
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
Description copied from interface:MetaDataFactory
Drop the metadata for the given classes in the given mode(s).- Specified by:
drop
in interfaceMetaDataFactory
- Returns:
- false if any metadata could not be dropped
-
getPersistentTypeNames
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. -
getQueryScope
Description copied from interface:MetaDataFactory
Return the type defining the given query name, if any.- Specified by:
getQueryScope
in interfaceMetaDataFactory
-
getResultSetMappingScope
Description copied from interface:MetaDataFactory
Return the type defining the given result set mapping name, if any.- Specified by:
getResultSetMappingScope
in interfaceMetaDataFactory
-
newClassArgParser
Description copied from interface:MetaDataFactory
Return a properly-configured class arg parser for our expected metadata format.- Specified by:
newClassArgParser
in interfaceMetaDataFactory
-
clear
public void clear()Description copied from interface:MetaDataFactory
Clear any internal caches.- Specified by:
clear
in interfaceMetaDataFactory
-
addClassExtensionKeys
Description copied from interface:MetaDataFactory
Add any extension keys used by this instance to the given set.- Specified by:
addClassExtensionKeys
in interfaceMetaDataFactory
-
addFieldExtensionKeys
Description copied from interface:MetaDataFactory
Add any extension keys used by this instance to the given set.- Specified by:
addFieldExtensionKeys
in interfaceMetaDataFactory
-