/* CloudTrail Viewer, is a Java desktop application for reading AWS CloudTrail logs files. Copyright (C) 2017 Mark P. Haskins This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package io.haskins.java.cloudtrailviewer.controller.menu; import io.haskins.java.cloudtrailviewer.CloudTrailViewer; import io.haskins.java.cloudtrailviewer.controller.dialog.filechooser.FileChooserController; import io.haskins.java.cloudtrailviewer.filter.AllFilter; import io.haskins.java.cloudtrailviewer.filter.CompositeFilter; import io.haskins.java.cloudtrailviewer.model.LoadLogsRequest; import io.haskins.java.cloudtrailviewer.service.AccountService; import io.haskins.java.cloudtrailviewer.service.EventService; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.scene.Scene; import javafx.scene.layout.Pane; import javafx.stage.FileChooser; import javafx.stage.Modality; import javafx.stage.Stage; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; /** * Controller that handles the Event menu * * Created by markhaskins on 06/01/2017. */ @Component public class EventMenuController { private final FileChooser fileChooser = new FileChooser(); private final EventService eventService; @Autowired public EventMenuController(EventService eventService) { this.eventService = eventService; } @FXML private void clearEvents() { eventService.clearEvents(); } }