Autopsy  4.19.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
CentralRepositoryNotificationDialog.java
Go to the documentation of this file.
1 /*
2  * Central Repository
3  *
4  * Copyright 2020 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.centralrepository.eventlisteners;
20 
21 import org.openide.util.NbBundle;
25 
31 
36  static boolean shouldDisplay() {
39  }
40 
45  @NbBundle.Messages({
46  "CentralRepositoryNotificationDialog.header=Autopsy stores data about each case in its Central Repository.",
47  "CentralRepositoryNotificationDialog.bulletHeader=This data is used to:",
48  "CentralRepositoryNotificationDialog.bulletOne=Ignore common items (files, domains, and accounts)",
49  "CentralRepositoryNotificationDialog.bulletTwo=Identify where an item was previously seen",
50  "CentralRepositoryNotificationDialog.bulletThree=Create personas that group accounts",
51  "CentralRepositoryNotificationDialog.finalRemarks=To limit what is stored, use the Central Repository options panel."
52  })
53  static void display() {
54  assert shouldDisplay();
55 
57  "<html>"
58  + "<body>"
59  + "<div>"
60  + "<p>" + Bundle.CentralRepositoryNotificationDialog_header() + "</p>"
61  + "<p>" + Bundle.CentralRepositoryNotificationDialog_bulletHeader() + "</p>"
62  + "<ul>"
63  + "<li>" + Bundle.CentralRepositoryNotificationDialog_bulletOne() + "</li>"
64  + "<li>" + Bundle.CentralRepositoryNotificationDialog_bulletTwo() + "</li>"
65  + "<li>" + Bundle.CentralRepositoryNotificationDialog_bulletThree() + "</li>"
66  + "</ul>"
67  + "<p>" + Bundle.CentralRepositoryNotificationDialog_finalRemarks() + "</p>"
68  + "</div>"
69  + "</body>"
70  + "</html>"
71  );
72  }
73 }
static Version.Type getBuildType()
Definition: Version.java:87

Copyright © 2012-2021 Basis Technology. Generated on: Fri Aug 6 2021
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.