Java Doc for Handler.java in  » Development » Monolog » org » objectweb » util » monolog » api » 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.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.objectweb.util.monolog.api.Handler

All known Subclasses:   org.objectweb.util.monolog.wrapper.javaLog.GenericHandler,  org.objectweb.util.monolog.wrapper.config.BasicHandler,  org.objectweb.util.monolog.wrapper.log4j.ConsoleHandler,  org.objectweb.util.monolog.wrapper.log4j.FileHandler,  org.objectweb.util.monolog.wrapper.log4j.JMXHandler,  org.objectweb.util.monolog.wrapper.log4jMini.FileHandler,  org.objectweb.util.monolog.wrapper.log4j.RollingFileHandler,  org.objectweb.util.monolog.wrapper.log4j.NTEventLogHandler,  org.objectweb.util.monolog.wrapper.log4j.GenericHandler,
Handler
public interface Handler (Code)
Handler is an output. For example a handler might be a console, a file, a socket, or a Logger.
author:
   Sebastien Chassande-Barrioz


Field Summary
 StringAPPEND_MODE_ATTRIBUTE
    
 StringBUFFER_ATTRIBUTE
    
 byteCONSOLE_HANDLER_TYPE
     This constant is used to represent an handler which prints message on a console.
 byteFILE_HANDLER_TYPE
     This constant is used to represent an handler which stores message into one file.
 StringFILE_NUMBER_ATTRIBUTE
    
 byteGENERIC_HANDLER_TYPE
     This constant is used to represent an handler which stores message into several files.
 byteJMX_HANDLER_TYPE
     This constant is used to represent a handler witch is a JMX notification emetter.
 StringLEVEL_ATTRIBUTE
    
 byteLOGGER_HANDLER_TYPE
     This constant is used to represent an handler which is a Logger.
 StringMAX_SIZE_ATTRIBUTE
    
 StringOUTPUT_ATTRIBUTE
    
 StringPATTERN_ATTRIBUTE
    
 byteROLLING_FILE_HANDLER_TYPE
     This constant is used to represent an handler which stores message into several files.


Method Summary
 ObjectgetAttribute(String name)
     It retrieves the value of an attribute value of the handler.
 String[]getAttributeNames()
    
 StringgetName()
    
 StringgetType()
    
 ObjectsetAttribute(String name, Object value)
     It assigns an attributte to the handler.
 voidsetName(String name)
    

Field Detail
APPEND_MODE_ATTRIBUTE
String APPEND_MODE_ATTRIBUTE(Code)



BUFFER_ATTRIBUTE
String BUFFER_ATTRIBUTE(Code)



CONSOLE_HANDLER_TYPE
byte CONSOLE_HANDLER_TYPE(Code)
This constant is used to represent an handler which prints message on a console.



FILE_HANDLER_TYPE
byte FILE_HANDLER_TYPE(Code)
This constant is used to represent an handler which stores message into one file.



FILE_NUMBER_ATTRIBUTE
String FILE_NUMBER_ATTRIBUTE(Code)



GENERIC_HANDLER_TYPE
byte GENERIC_HANDLER_TYPE(Code)
This constant is used to represent an handler which stores message into several files.



JMX_HANDLER_TYPE
byte JMX_HANDLER_TYPE(Code)
This constant is used to represent a handler witch is a JMX notification emetter.



LEVEL_ATTRIBUTE
String LEVEL_ATTRIBUTE(Code)



LOGGER_HANDLER_TYPE
byte LOGGER_HANDLER_TYPE(Code)
This constant is used to represent an handler which is a Logger.



MAX_SIZE_ATTRIBUTE
String MAX_SIZE_ATTRIBUTE(Code)



OUTPUT_ATTRIBUTE
String OUTPUT_ATTRIBUTE(Code)



PATTERN_ATTRIBUTE
String PATTERN_ATTRIBUTE(Code)



ROLLING_FILE_HANDLER_TYPE
byte ROLLING_FILE_HANDLER_TYPE(Code)
This constant is used to represent an handler which stores message into several files.





Method Detail
getAttribute
Object getAttribute(String name)(Code)
It retrieves the value of an attribute value of the handler.
Parameters:
  name - is an attribute name



getAttributeNames
String[] getAttributeNames()(Code)
It retrieves the attributes of the handler



getName
String getName()(Code)
It retrieves the name of the handler



getType
String getType()(Code)
It retrieves the Handler type



setAttribute
Object setAttribute(String name, Object value)(Code)
It assigns an attributte to the handler.
Parameters:
  name - is the attribute name
Parameters:
  value - is the attribute value the old value is the attribute was already defined



setName
void setName(String name)(Code)
It assigns the name of the handler



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