java.lang.Object
com.github.eventmanager.filehandlers.config.ConfigLogFile

public class ConfigLogFile extends Object
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 Details

    • ConfigLogFile

      public ConfigLogFile()
  • Method Details

    • getFilePath

      public String getFilePath()
      Gets the file path for the log files.
      Returns:
      the file path for the log files.
    • setFilePath

      public void setFilePath(String filePath)
      Sets the file path for the log files.
      Parameters:
      filePath - the file path for the log files.
    • getFileName

      public String getFileName()
      Gets the file name for the log files.
      Returns:
      the file name for the log files.
    • setFileName

      public void setFileName(String fileName)
      Sets the file name for the log files.
      Parameters:
      fileName - the file name for the log files.
    • getFileExtension

      public String getFileExtension()
      Gets the file extension for the log files.
      Returns:
      the file extension for the log files.
    • setFileExtension

      public void setFileExtension(String fileExtension)
      Sets the file extension for the log files.
      Parameters:
      fileExtension - the file extension for the log files.