19 package org.sleuthkit.autopsy.contentviewers.artifactviewers;
21 import javax.swing.JButton;
22 import javax.swing.JLabel;
28 class AccountPersonaSearcherData {
31 private final String accountIdentifer;
33 private final JLabel personaNameLabel;
35 private final JButton personaActionButton;
44 AccountPersonaSearcherData(String accountIdentifer, JLabel personaNameLabel, JButton personaActionButton) {
45 this.accountIdentifer = accountIdentifer;
46 this.personaNameLabel = personaNameLabel;
47 this.personaActionButton = personaActionButton;
55 public String getAccountIdentifer() {
56 return accountIdentifer;
64 public JLabel getPersonaNameLabel() {
65 return personaNameLabel;
73 public JButton getPersonaActionButton() {
74 return personaActionButton;