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

Packages that use Log
org.apache.openjpa.conf OpenJPA Configuration This package provides base OpenJPA configuration interfaces. 
org.apache.openjpa.datacache OpenJPA Data Cache OpenJPA's data and query caching frameworks. 
org.apache.openjpa.enhance OpenJPA Enhancer This package provides a bytecode enhancer used to post-process classes for use in a OpenJPA runtime. 
org.apache.openjpa.enhance.stats   
org.apache.openjpa.event OpenJPA Events This package provides some interfaces and useful implementations for OpenJPA's event notification framework. 
org.apache.openjpa.jdbc.kernel OpenJPA-JDBC Runtime Kernel Runtime services for the JDBC OpenJPA implementation. 
org.apache.openjpa.jdbc.meta OpenJPA-JDBC ORM Metadata This package extends the standard persistence metadata with object-relational mapping information. 
org.apache.openjpa.jdbc.schema OpenJPA-JDBC Schema Management This package provides utilities for managing the schema of persistent objects stored in a relational database. 
org.apache.openjpa.jdbc.sql OpenJPA-JDBC SQL Abstraction Utilities for generating SQL. 
org.apache.openjpa.kernel OpenJPA Runtime Kernel This package provides a common OpenJPA runtime environment that can be adapted for use with various data store mechanisms. 
org.apache.openjpa.lib.conf Configuration Framework This package provides an extendable product configuration framework. 
org.apache.openjpa.lib.jdbc Database Connectivity Includes an implementation of the DataSource APIs around a normal JDBC 1.x driver. 
org.apache.openjpa.lib.log Logging This package provides a lightweight logging interface, a simple implementation that writes logging output to the console and allows for basic log configuration, and plug-ins for the Apache Commons Logging and the Apache Log4J frameworks. 
org.apache.openjpa.lib.meta Metadata Framework Extendable framework for metadata parsing and serializing. 
org.apache.openjpa.meta OpenJPA Metadata This package provides an extendable framework for parsing and caching persistence metadata. 
org.apache.openjpa.persistence OpenJPA JPA This package provides an JPA facade to OpenJPA. 
org.apache.openjpa.persistence.jest   
 

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.enhance.stats
 

Methods in org.apache.openjpa.enhance.stats with parameters of type Log
static void FetchStatsCollector.setlogger(Log log)
           
 

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.schema
 

Fields in org.apache.openjpa.jdbc.schema declared as Log
protected  Log SchemaTool._log
           
 

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.
 

Uses of Log in org.apache.openjpa.persistence.jest
 

Fields in org.apache.openjpa.persistence.jest declared as Log
protected  Log JESTContext._log
           
 



Copyright © 2006–2013 Apache Software Foundation. All rights reserved.