Autopsy  4.14.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
ReportingConfig.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2019 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.report.infrastructure;
20 
21 import java.io.Serializable;
22 import java.util.HashMap;
23 import java.util.Map;
24 
28 final class ReportingConfig implements Serializable {
29 
30  private static final long serialVersionUID = 1L;
31  private String configName;
32  private Map<String, ReportModuleConfig> moduleConfigs = new HashMap<>();
33  private TableReportSettings tableReportSettings;
34  private FileReportSettings fileReportSettings;
35 
41  ReportingConfig(String configName) {
42  this.configName = configName;
43  }
44 
45  void setName(String configName) {
46  this.configName = configName;
47  }
48 
49  String getName() {
50  return this.configName;
51  }
52 
53  void setModuleConfigs(Map<String, ReportModuleConfig> moduleConfigs) {
54  this.moduleConfigs = moduleConfigs;
55  }
56 
57  Map<String, ReportModuleConfig> getModuleConfigs() {
58  return this.moduleConfigs;
59  }
60 
61  void setTableReportSettings(TableReportSettings settings) {
62  this.tableReportSettings = settings;
63  }
64 
65  TableReportSettings getTableReportSettings() {
66  return this.tableReportSettings;
67  }
68 
69  void setFileReportSettings(FileReportSettings settings) {
70  this.fileReportSettings = settings;
71  }
72 
73  FileReportSettings getFileReportSettings() {
74  return this.fileReportSettings;
75  }
76 
77 }

Copyright © 2012-2020 Basis Technology. Generated on: Wed Apr 8 2020
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.