Package com.microstrategy.utils.xml
Class DefaultMessageRouter
- java.lang.Object
-
- com.microstrategy.utils.xml.DefaultMessageRouter
-
- All Implemented Interfaces:
MessageRouter
public class DefaultMessageRouter extends java.lang.Object implements MessageRouter
This class represents a simple Message Router implementation that simply sends its strings to the System.err channel.- Since:
- MicroStrategy Web 8.1.0
-
-
Constructor Summary
Constructors Constructor Description DefaultMessageRouter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiderror(java.lang.String msg)Indicate that an error has occurred.voidinfo(java.lang.String msg)Indicates an informational message.voidwarning(java.lang.String msg)Indicate that a warning has occurred.
-
-
-
Method Detail
-
info
public void info(java.lang.String msg)
Description copied from interface:MessageRouterIndicates an informational message.- Specified by:
infoin interfaceMessageRouter- Parameters:
msg- The message associated with this information message.
-
warning
public void warning(java.lang.String msg)
Description copied from interface:MessageRouterIndicate that a warning has occurred.- Specified by:
warningin interfaceMessageRouter- Parameters:
msg- The message associated with the warning.
-
error
public void error(java.lang.String msg)
Description copied from interface:MessageRouterIndicate that an error has occurred.- Specified by:
errorin interfaceMessageRouter- Parameters:
msg- The message associated with the error.
-
-