Class ConfigLogFile
java.lang.Object
com.github.eventmanager.filehandlers.config.ConfigLogFile
The ConfigLogFile class holds the configuration settings related to log files for the EventManager application.
It includes settings for the file path, file name, and file extension of the log files.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the file extension for the log files.Gets the file name for the log files.Gets the file path for the log files.void
setFileExtension
(String fileExtension) Sets the file extension for the log files.void
setFileName
(String fileName) Sets the file name for the log files.void
setFilePath
(String filePath) Sets the file path for the log files.
-
Constructor Details
-
ConfigLogFile
public ConfigLogFile()
-
-
Method Details
-
getFilePath
Gets the file path for the log files.- Returns:
- the file path for the log files.
-
setFilePath
Sets the file path for the log files.- Parameters:
filePath
- the file path for the log files.
-
getFileName
Gets the file name for the log files.- Returns:
- the file name for the log files.
-
setFileName
Sets the file name for the log files.- Parameters:
fileName
- the file name for the log files.
-
getFileExtension
Gets the file extension for the log files.- Returns:
- the file extension for the log files.
-
setFileExtension
Sets the file extension for the log files.- Parameters:
fileExtension
- the file extension for the log files.
-