Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
AccountPersonaSearcherData.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
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 */
19package org.sleuthkit.autopsy.contentviewers.artifactviewers;
20
21import javax.swing.JButton;
22import javax.swing.JLabel;
23
28class AccountPersonaSearcherData {
29
30 // Account identifier to search personas for.
31 private final String accountIdentifer;
32 // Persona name label to be updated when the search is complete.
33 private final JLabel personaNameLabel;
34 // Persona action button to be updated when the search is complete
35 private final JButton personaActionButton;
36
44 AccountPersonaSearcherData(String accountIdentifer, JLabel personaNameLabel, JButton personaActionButton) {
45 this.accountIdentifer = accountIdentifer;
46 this.personaNameLabel = personaNameLabel;
47 this.personaActionButton = personaActionButton;
48 }
49
55 public String getAccountIdentifer() {
56 return accountIdentifer;
57 }
58
64 public JLabel getPersonaNameLabel() {
65 return personaNameLabel;
66 }
67
73 public JButton getPersonaActionButton() {
74 return personaActionButton;
75 }
76}

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