Interface LogDestination
-
- All Known Subinterfaces:
FileLogDestination
public interface LogDestinationThis interface represents a log destination for an IServer. This interface is extended by aFileLogDestinationwhich represents log destinations of typeEnumLogDestinationType.LogDestinationTypeDiagnosticsLog,EnumLogDestinationType.LogDestinationTypePerformanceLogand is editable. Note that any changes made to an editable log destination can be saved only usingLogDestinations.save(). For a given IServer, there is only oneLogDestinationsobject that refers to all the log destinations for the IServer. Thus, if one/moreLogDestinations have been edited, they can be saved in a batch, usingLogDestinations.save().- Since:
- MicroStrategy Web 7.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Returns the name of the log destination.intgetType()Returns the type of log destination.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the log destination.- Returns:
- String name of the log destination.
-
getType
int getType()
Returns the type of log destination. The type will be a value from the enumeration @link EnumLogDestinationType}.- Returns:
- int the type of log destination.
-
-