Go to the documentation of this file.
19package org.sleuthkit.autopsy.casemodule.events;
21import java.util.ArrayList;
23import org.sleuthkit.datamodel.OsAccount;
24import org.sleuthkit.datamodel.SleuthkitCase;
25import org.sleuthkit.datamodel.TskCoreException;
33 private static final long serialVersionUID = 1L;
44 OsAccountsEvent(String eventName, List<OsAccount> osAccounts) {
45 super(eventName,
null,
null, osAccounts, OsAccount::getId);
53 public List<OsAccount> getOsAccounts() {
58 protected List<OsAccount> getNewValueObjects(SleuthkitCase caseDb, List<Long> ids)
throws TskCoreException {
59 List<OsAccount> osAccounts =
new ArrayList<>();
61 osAccounts.add(caseDb.getOsAccountManager().getOsAccountByObjectId(
id));
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.