Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
ReportModule.java
Go to the documentation of this file.
1/*
2 *
3 * Autopsy Forensic Browser
4 *
5 * Copyright 2012-2019 Basis Technology Corp.
6 *
7 * Copyright 2012 42six Solutions.
8 * Contact: aebadirad <at> 42six <dot> com
9 * Project Contact/Architect: carrier <at> sleuthkit <dot> org
10 *
11 * Licensed under the Apache License, Version 2.0 (the "License");
12 * you may not use this file except in compliance with the License.
13 * You may obtain a copy of the License at
14 *
15 * http://www.apache.org/licenses/LICENSE-2.0
16 *
17 * Unless required by applicable law or agreed to in writing, software
18 * distributed under the License is distributed on an "AS IS" BASIS,
19 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 * See the License for the specific language governing permissions and
21 * limitations under the License.
22 */
23package org.sleuthkit.autopsy.report;
24
25import javax.swing.JPanel;
26
30public interface ReportModule {
31
35 public String getName();
36
41 public String getDescription();
42
52 public String getRelativeFilePath();
53
61 public default JPanel getConfigurationPanel() {
63 }
64
73
80 return new NoReportModuleSettings();
81 }
82
88 public default void setConfiguration(ReportModuleSettings settings) {
89 // NO-OP
90 }
91}
default ReportModuleSettings getConfiguration()
default void setConfiguration(ReportModuleSettings settings)
default ReportModuleSettings getDefaultConfiguration()

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