Uses of Interface
org.apache.openjpa.lib.log.Log

Packages that use Log
org.apache.openjpa.conf OpenJPA Configuration 
org.apache.openjpa.datacache OpenJPA Data Cache 
org.apache.openjpa.enhance OpenJPA Enhancer 
org.apache.openjpa.event OpenJPA Events 
org.apache.openjpa.jdbc.kernel OpenJPA-JDBC Runtime Kernel 
org.apache.openjpa.jdbc.meta OpenJPA-JDBC ORM Metadata 
org.apache.openjpa.jdbc.sql OpenJPA-JDBC SQL Abstraction 
org.apache.openjpa.kernel OpenJPA Runtime Kernel 
org.apache.openjpa.lib.conf Configuration Framework 
org.apache.openjpa.lib.jdbc Database Connectivity 
org.apache.openjpa.lib.log Logging 
org.apache.openjpa.lib.meta Metadata Framework 
org.apache.openjpa.meta OpenJPA Metadata 
org.apache.openjpa.persistence OpenJPA JPA 
 

Uses of Log in org.apache.openjpa.conf
 

Methods in org.apache.openjpa.conf that return Log
 Log OpenJPAConfigurationImpl.getConfigurationLog()
           
 

Methods in org.apache.openjpa.conf with parameters of type Log
 void MetaDataCacheMaintenance.setLog(Log log)
           
 

Uses of Log in org.apache.openjpa.datacache
 

Fields in org.apache.openjpa.datacache declared as Log
protected  Log AbstractQueryCache.log
          The log to use.
protected  Log AbstractDataCache.log
          The log to use.
 

Uses of Log in org.apache.openjpa.enhance
 

Methods in org.apache.openjpa.enhance with parameters of type Log
static boolean ClassRedefiner.canRedefineClasses(Log log)
           
static boolean PCEnhancer.checkEnhancementLevel(Class<?> cls, Log log)
          This static public worker method detects and logs any Entities that may have been enhanced at build time by a version of the enhancer that is older than the current version.
static Instrumentation InstrumentationFactory.getInstrumentation(Log log)
           
static boolean PCEnhancerAgent.loadDynamicAgent(Log log)
           
 

Constructors in org.apache.openjpa.enhance with parameters of type Log
PCSubclassValidator(ClassMetaData meta, serp.bytecode.BCClass bc, Log log, boolean enforceContractViolations)
           
 

Uses of Log in org.apache.openjpa.event
 

Fields in org.apache.openjpa.event declared as Log
protected  Log AbstractRemoteCommitProvider.log
           
 

Uses of Log in org.apache.openjpa.jdbc.kernel
 

Fields in org.apache.openjpa.jdbc.kernel declared as Log
protected  Log PreparedStatementManagerImpl._log
           
 

Uses of Log in org.apache.openjpa.jdbc.meta
 

Methods in org.apache.openjpa.jdbc.meta that return Log
 Log ReverseMappingTool.getLog()
          Return the log to write to.
 

Methods in org.apache.openjpa.jdbc.meta with parameters of type Log
 boolean MappingTool.ImportExport.exportMappings(JDBCConfiguration conf, Class<?>[] act, boolean meta, Log log, Writer writer)
          Export mappings for the given classes based on the given arguments.
 boolean MappingTool.ImportExport.importMappings(JDBCConfiguration conf, Class<?>[] act, String[] args, boolean meta, Log log, ClassLoader loader)
          Import mappings for the given classes based on the given arguments.
 

Uses of Log in org.apache.openjpa.jdbc.sql
 

Fields in org.apache.openjpa.jdbc.sql declared as Log
protected  Log DBDictionary.log
           
 

Methods in org.apache.openjpa.jdbc.sql that return Log
 Log DBDictionary.getLog()
           
 

Uses of Log in org.apache.openjpa.kernel
 

Fields in org.apache.openjpa.kernel declared as Log
protected  Log AbstractLockManager.log
          Runtime log to write locking messages to.
 

Uses of Log in org.apache.openjpa.lib.conf
 

Methods in org.apache.openjpa.lib.conf that return Log
 Log ConfigurationImpl.getConfigurationLog()
          Returns the logging channel openjpa.Runtime by default.
 Log Configuration.getConfigurationLog()
          Return the log to use for configuration messages.
 Log ConfigurationImpl.getLog(String category)
           
 Log Configuration.getLog(String category)
          Return the log for the given category.
 

Methods in org.apache.openjpa.lib.conf with parameters of type Log
static Object Configurations.lookup(String name, String userKey, Log log)
          Looks up the given name in JNDI.
protected  void MapConfigurationProvider.setInto(Configuration conf, Log log)
          Set properties into configuration.
 

Uses of Log in org.apache.openjpa.lib.jdbc
 

Methods in org.apache.openjpa.lib.jdbc that return Log
 Log DataSourceLogs.getJDBCLog()
          The log to write JDBC messages to.
 Log DataSourceLogs.getSQLLog()
          The log to write SQL messages to.
 

Methods in org.apache.openjpa.lib.jdbc with parameters of type Log
 void DataSourceLogs.setJDBCLog(Log log)
          The log to write JDBC messages to.
 void DataSourceLogs.setSQLLog(Log log)
          The log to write SQL messages to.
 

Uses of Log in org.apache.openjpa.lib.log
 

Classes in org.apache.openjpa.lib.log that implement Log
 class AbstractLog
          A simple implementation of the Log interface.
static class CommonsLogFactory.LogAdapter
          Adapts a commons logging log to the Log interface.
static class Log4JLogFactory.LogAdapter
          Adapts a Log4J logger to the Log interface.
 class LogFactoryImpl.LogImpl
          A simple implementation of the Log interface.
static class NoneLogFactory.NoneLog
          No-op log.
static class SLF4JLogFactory.LogAdapter
          Adapts a Log4J logger to the Log interface.
 

Methods in org.apache.openjpa.lib.log that return Log
 Log NoneLogFactory.getLog(String channel)
           
 Log MultiLogFactory.getLog(String channel)
          Returns a Log impl that combines all logs.
 Log LogFactoryImpl.getLog(String channel)
           
 Log LogFactoryAdapter.getLog(String channel)
           
 Log LogFactory.getLog(String channel)
          Return a log for the given channel name.
protected  Log SLF4JLogFactory.newLogAdapter(String channel)
           
protected abstract  Log LogFactoryAdapter.newLogAdapter(String channel)
          Return a log adapter for the given channel.
protected  Log Log4JLogFactory.newLogAdapter(String channel)
           
protected  Log CommonsLogFactory.newLogAdapter(String channel)
           
 

Constructors in org.apache.openjpa.lib.log with parameters of type Log
LogOutputStream(Log log, int level)
          Constructor.
 

Uses of Log in org.apache.openjpa.lib.meta
 

Methods in org.apache.openjpa.lib.meta that return Log
 Log XMLMetaDataSerializer.getLog()
          The log to write to.
 Log XMLMetaDataParser.getLog()
          The log to write to.
 Log ClassAnnotationMetaDataFilter.getLog()
           
 

Methods in org.apache.openjpa.lib.meta with parameters of type Log
 void XMLMetaDataSerializer.setLog(Log log)
          The log to write to.
 void XMLMetaDataParser.setLog(Log log)
          The log to write to.
 void ClassAnnotationMetaDataFilter.setLog(Log _log)
           
 

Uses of Log in org.apache.openjpa.meta
 

Fields in org.apache.openjpa.meta declared as Log
protected  Log AbstractMetaDataFactory.log
           
 

Methods in org.apache.openjpa.meta that return Log
 Log MetaDataRepository.getLog()
          Return the metadata log.
 

Uses of Log in org.apache.openjpa.persistence
 

Methods in org.apache.openjpa.persistence that return Log
 Log AnnotationPersistenceXMLMetaDataParser.getLog()
          Metadata log.
 Log AnnotationPersistenceMetaDataSerializer.getLog()
          The log to write to.
 Log AnnotationPersistenceMetaDataParser.getLog()
          Metadata log.
 

Methods in org.apache.openjpa.persistence with parameters of type Log
 boolean PersistenceProductDerivation.checkPuNameCollisions(Log logger, String puName)
          This method checks to see if the provided puName was detected in multiple resources.
 void AnnotationPersistenceMetaDataSerializer.setLog(Log log)
          The log to write to.
static void MetaDataParsers.validateMethodsForSameCallback(Class cls, Collection<LifecycleCallbacks> callbacks, Method method, MetaDataTag tag, OpenJPAConfiguration conf, Log log)
          Validate that the given listener class does not have multiple methods listening for the same lifecycle event, which is forbidden by the spec.
 



Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.