Package org.apache.log4j.spi
Interface Decoder
- All Known Implementing Classes:
UtilLoggingXMLDecoder
,XMLDecoder
public interface Decoder
Allow LoggingEvents to be reconstructed from a different format
(usually XML).
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.log4j.spi.LoggingEvent
Decode event from string.Vector<org.apache.log4j.spi.LoggingEvent>
Decode event from document retreived from URL.Vector<org.apache.log4j.spi.LoggingEvent>
decodeEvents
(String document) Decode events from document.void
setAdditionalProperties
(Map additionalProperties) Sets additional properties.
-
Method Details
-
decodeEvents
Decode events from document.- Parameters:
document
- document to decode.- Returns:
- list of LoggingEvent instances.
-
decode
Decode event from string.- Parameters:
event
- string representation of event- Returns:
- event
-
decode
Decode event from document retreived from URL.- Parameters:
url
- url of document- Returns:
- list of LoggingEvent instances.
- Throws:
IOException
- if IO error resolving document.
-
setAdditionalProperties
Sets additional properties.- Parameters:
additionalProperties
- map of additional properties.
-