Package org.apache.openjpa.lib.log
Class JULLogFactory
- java.lang.Object
-
- org.apache.openjpa.lib.log.JULLogFactory
-
- All Implemented Interfaces:
Configurable
,LogFactory
public class JULLogFactory extends java.lang.Object implements LogFactory, Configurable
-
-
Constructor Summary
Constructors Constructor Description JULLogFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
endConfiguration()
Invoked upon completion of bean property configuration for this object.Log
getLog(java.lang.String channel)
Return a log for the given channel name.void
setConfiguration(Configuration conf)
Invoked prior to setting bean properties.void
startConfiguration()
Invoked before bean property configuration is begun on this object.
-
-
-
Method Detail
-
getLog
public Log getLog(java.lang.String channel)
Description copied from interface:LogFactory
Return a log for the given channel name.- Specified by:
getLog
in interfaceLogFactory
-
setConfiguration
public void setConfiguration(Configuration conf)
Description copied from interface:Configurable
Invoked prior to setting bean properties.- Specified by:
setConfiguration
in interfaceConfigurable
-
startConfiguration
public void startConfiguration()
Description copied from interface:Configurable
Invoked before bean property configuration is begun on this object.- Specified by:
startConfiguration
in interfaceConfigurable
-
endConfiguration
public void endConfiguration()
Description copied from interface:Configurable
Invoked upon completion of bean property configuration for this object.- Specified by:
endConfiguration
in interfaceConfigurable
-
-