Interface LogDestination
-
- All Known Subinterfaces:
FileLogDestination
public interface LogDestination
This interface represents a log destination for an IServer. This interface is extended by aFileLogDestination
which represents log destinations of typeEnumLogDestinationType.LogDestinationTypeDiagnosticsLog
,EnumLogDestinationType.LogDestinationTypePerformanceLog
and 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 oneLogDestinations
object that refers to all the log destinations for the IServer. Thus, if one/moreLogDestination
s 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.String
getName()
Returns the name of the log destination.int
getType()
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.
-
-