Java Doc for PropertiesConfAccess.java in  » Development » Monolog » org » objectweb » util » monolog » file » monolog » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Development » Monolog » org.objectweb.util.monolog.file.monolog 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.objectweb.util.monolog.file.monolog.PropertiesConfAccess

PropertiesConfAccess
public class PropertiesConfAccess implements Serializable(Code)
This class permits to load and store a monolog configuration. The chooseen format is java.util.Properties. It also easy to write or load a Properties from a file. The encoding format is the following:
handler..=

level.=

logger..level=
logger..additivity=
logger..handler.=
logger..topic.=


author:
   Sebastien Chassande-Barrioz

Inner Class :class NestedException extends Exception

Field Summary
final public static  StringACTIVATION
    
final public static  StringADDITIVITY_FIELD
    
final public static  StringCLEAN_HANDLERS_FIELD
    
final public static  charDOT
    
final public static  StringHANDLER_FIELD
    
final public static  StringHANDLER_TYPE_ATTRIBUTE
    
final public static  StringHANDLER_TYPE_ATTRIBUTE_CONSOLE_VALUE
    
final public static  StringHANDLER_TYPE_ATTRIBUTE_FILE_VALUE
    
final public static  StringHANDLER_TYPE_ATTRIBUTE_JMX_VALUE
    
final public static  StringHANDLER_TYPE_ATTRIBUTE_NTEVENT_VALUE
    
final public static  StringHANDLER_TYPE_ATTRIBUTE_ROLLING_FILE_VALUE
    
final public static  StringLEVEL_FIELD
    
final public static  StringLOGGER_FIELD
    
final public static  StringTOPIC_FIELD
    
final public static  StringUSE_PARENT_FIELD
    
public static  booleandebug
    
protected  VectorloggerCleaned
    


Method Summary
protected  voidcleanOldHandler(TopicalLogger l)
    
public  voiddebug(String m)
    
protected  String[]getDependsLevel(String expr)
     It retrieves the list of the referenced levels in the String parameter.
Parameters:
  expr - is a string which can contain level identifier.
protected  booleanisDefaultLevel(Level l)
     It checks if the level parameter is a default monolog level.
public static  voidload(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
    
public static  voidload(Properties prop, MonologFactory mf)
    
protected  HandlerparseHandlerProp(Properties prop, String key, HandlerFactory hf)
     It parses a property entry to build or configure a Handler instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  hf - is the handler factory to use for building a new instance orfetching existent handlers.
protected  LevelparseLevelProp(Properties prop, String key, LevelFactory lef)
     It parses a property entry to build or configure a Level instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  lef - is the level factory to use for building a new instance orfetching existent levels.
protected  LevelparseLevelProp(Properties prop, String key, LevelFactory lef, Vector currentLevelParse)
     It parses a property entry to build or configure a Level instance.
protected  LoggerparseLoggerProp(Properties prop, String key, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
     It parses a property entry to build or configure a Logger instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  lof - is the logger factory to use for building a new instance orfetching existent loggers.
Parameters:
  hf - is the handler factory to use for building a new instance orfetching existent handlers.
Parameters:
  lef - is the level factory to use for building a new instance orfetching existent levels.
protected  LoggerparseLoggerProp(Properties prop, String key, MonologFactory mf)
     It parses a property entry to build or configure a Logger instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  mf - is the monolog factory to use for building a new instance orfetching existent loggers, handlers or levels.
public  voidread(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
    
public  voidread(Properties prop, MonologFactory mf)
    
public static  voidstore(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
    
public static  voidstore(Properties prop, MonologFactory mf)
    
public  voidwrite(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
    

Field Detail
ACTIVATION
final public static String ACTIVATION(Code)



ADDITIVITY_FIELD
final public static String ADDITIVITY_FIELD(Code)



CLEAN_HANDLERS_FIELD
final public static String CLEAN_HANDLERS_FIELD(Code)



DOT
final public static char DOT(Code)



HANDLER_FIELD
final public static String HANDLER_FIELD(Code)



HANDLER_TYPE_ATTRIBUTE
final public static String HANDLER_TYPE_ATTRIBUTE(Code)



HANDLER_TYPE_ATTRIBUTE_CONSOLE_VALUE
final public static String HANDLER_TYPE_ATTRIBUTE_CONSOLE_VALUE(Code)



HANDLER_TYPE_ATTRIBUTE_FILE_VALUE
final public static String HANDLER_TYPE_ATTRIBUTE_FILE_VALUE(Code)



HANDLER_TYPE_ATTRIBUTE_JMX_VALUE
final public static String HANDLER_TYPE_ATTRIBUTE_JMX_VALUE(Code)



HANDLER_TYPE_ATTRIBUTE_NTEVENT_VALUE
final public static String HANDLER_TYPE_ATTRIBUTE_NTEVENT_VALUE(Code)



HANDLER_TYPE_ATTRIBUTE_ROLLING_FILE_VALUE
final public static String HANDLER_TYPE_ATTRIBUTE_ROLLING_FILE_VALUE(Code)



LEVEL_FIELD
final public static String LEVEL_FIELD(Code)



LOGGER_FIELD
final public static String LOGGER_FIELD(Code)



TOPIC_FIELD
final public static String TOPIC_FIELD(Code)



USE_PARENT_FIELD
final public static String USE_PARENT_FIELD(Code)



debug
public static boolean debug(Code)



loggerCleaned
protected Vector loggerCleaned(Code)





Method Detail
cleanOldHandler
protected void cleanOldHandler(TopicalLogger l) throws Exception(Code)
Clear all the handlers associated to a logger which are not defined into this file



debug
public void debug(String m)(Code)



getDependsLevel
protected String[] getDependsLevel(String expr)(Code)
It retrieves the list of the referenced levels in the String parameter.
Parameters:
  expr - is a string which can contain level identifier. The string isan arithmetic expression which contains number, operator and levelsidentifier. the list of the referenced levels.



isDefaultLevel
protected boolean isDefaultLevel(Level l)(Code)
It checks if the level parameter is a default monolog level. The default monolog levels are the following:
  • FATAL
  • ERROR
  • WARN
  • INFO
  • DEBUG



load
public static void load(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef) throws Exception(Code)



load
public static void load(Properties prop, MonologFactory mf) throws Exception(Code)



parseHandlerProp
protected Handler parseHandlerProp(Properties prop, String key, HandlerFactory hf) throws Exception(Code)
It parses a property entry to build or configure a Handler instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  hf - is the handler factory to use for building a new instance orfetching existent handlers. the handler instance which has been built or configured
throws:
  Exception - when a parameter is null or the entry is malformed.



parseLevelProp
protected Level parseLevelProp(Properties prop, String key, LevelFactory lef) throws Exception(Code)
It parses a property entry to build or configure a Level instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  lef - is the level factory to use for building a new instance orfetching existent levels. the level instance which has been built or configured
throws:
  Exception - when a circular level definition is found or when aparameter is null or the entry is malformed.



parseLevelProp
protected Level parseLevelProp(Properties prop, String key, LevelFactory lef, Vector currentLevelParse) throws Exception(Code)
It parses a property entry to build or configure a Level instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  lef - is the level factory to use for building a new instance orfetching existent levels.
Parameters:
  currentLevelParse - the list of current level name which aresearched.
throws:
  Exception - when a circular level definition is found or when aparameter is null.



parseLoggerProp
protected Logger parseLoggerProp(Properties prop, String key, LoggerFactory lof, HandlerFactory hf, LevelFactory lef) throws Exception(Code)
It parses a property entry to build or configure a Logger instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  lof - is the logger factory to use for building a new instance orfetching existent loggers.
Parameters:
  hf - is the handler factory to use for building a new instance orfetching existent handlers.
Parameters:
  lef - is the level factory to use for building a new instance orfetching existent levels. the level instance which has been built or configured
throws:
  Exception - when a parameter is null or the entry is malformed.



parseLoggerProp
protected Logger parseLoggerProp(Properties prop, String key, MonologFactory mf) throws Exception(Code)
It parses a property entry to build or configure a Logger instance.
Parameters:
  prop - is the property where the entry is reachable.
Parameters:
  key - is the entry key
Parameters:
  mf - is the monolog factory to use for building a new instance orfetching existent loggers, handlers or levels. the level instance which has been built or configured
throws:
  Exception - when a parameter is null or the entry is malformed.



read
public void read(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef) throws Exception(Code)



read
public void read(Properties prop, MonologFactory mf) throws Exception(Code)



store
public static void store(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef) throws Exception(Code)



store
public static void store(Properties prop, MonologFactory mf) throws Exception(Code)



write
public void write(Properties prop, LoggerFactory lof, HandlerFactory hf, LevelFactory lef) throws Exception(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.