Go to the documentation of this file.
19package org.sleuthkit.autopsy.report.infrastructure;
21import java.io.Serializable;
22import java.util.ArrayList;
23import java.util.HashMap;
31final class FileReportSettings
implements Serializable {
33 private static final long serialVersionUID = 1L;
34 private Map<FileReportDataTypes, Boolean> filePropertiesInfo =
new HashMap<>();
35 private List<Long> selectedDataSources;
43 FileReportSettings(Map<FileReportDataTypes, Boolean> fileReportInfo) {
44 this.filePropertiesInfo = fileReportInfo;
52 Map<FileReportDataTypes, Boolean> getFileProperties() {
53 return filePropertiesInfo;
59 List<Long> getSelectedDataSources() {
60 return selectedDataSources;
66 void setSelectedDataSources(List<Long> selectedDataSources) {
67 this.selectedDataSources =
new ArrayList<>(selectedDataSources);
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.