Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
ReportModuleConfig.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 */
19package org.sleuthkit.autopsy.report.infrastructure;
20
21import org.sleuthkit.autopsy.report.NoReportModuleSettings;
22import org.sleuthkit.autopsy.report.ReportModule;
23import org.sleuthkit.autopsy.report.ReportModuleSettings;
24import java.io.Serializable;
25
30final class ReportModuleConfig implements Serializable {
31
32 private static final long serialVersionUID = 1L;
33 private final String moduleName;
34 private transient ReportModuleSettings settings; // these settings get serialized individually
35 private boolean enabled;
36
43 ReportModuleConfig(ReportModule module, boolean enabled) {
44 this.moduleName = module.getClass().getCanonicalName();
45 this.enabled = enabled;
46 this.settings = new NoReportModuleSettings();
47 }
48
56 ReportModuleConfig(ReportModule module, boolean enabled, ReportModuleSettings settings) {
57 this.moduleName = module.getClass().getCanonicalName();
58 this.enabled = enabled;
59 this.settings = settings;
60 }
61
67 String getModuleClassName() {
68 return moduleName;
69 }
70
76 void setEnabled(boolean enabled) {
77 this.enabled = enabled;
78 }
79
85 boolean isEnabled() {
86 return this.enabled;
87 }
88
94 ReportModuleSettings getModuleSettings() {
95 return settings;
96 }
97
103 void setModuleSettings(ReportModuleSettings settings) {
104 this.settings = settings;
105 }
106}

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.