mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 09:17:42 +00:00
7553 data model event changes
This commit is contained in:
parent
483948e3e6
commit
98ea5d2bc9
@ -463,7 +463,7 @@ public class Case {
|
||||
*/
|
||||
PERSONS_UPDATED,
|
||||
/**
|
||||
* One or more hosts persons been deleted from the case.
|
||||
* One or more persons been deleted from the case.
|
||||
*/
|
||||
PERSONS_DELETED,
|
||||
/**
|
||||
|
@ -23,7 +23,7 @@ import org.sleuthkit.autopsy.casemodule.Case;
|
||||
import org.sleuthkit.datamodel.Host;
|
||||
|
||||
/**
|
||||
* An application event published when hosts have been added to the Sleuth Kit
|
||||
* Application events published when hosts have been added to the Sleuth Kit
|
||||
* data model for a case.
|
||||
*/
|
||||
public final class HostsAddedEvent extends HostsEvent {
|
||||
@ -39,5 +39,5 @@ public final class HostsAddedEvent extends HostsEvent {
|
||||
public HostsAddedEvent(List<Host> hosts) {
|
||||
super(Case.Events.HOSTS_ADDED.name(), hosts);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ public class HostsEvent extends TskDataModelChangedEvent<Host, Host> {
|
||||
* type.
|
||||
* @param hosts The hosts.
|
||||
*/
|
||||
protected HostsEvent(String eventName, List<Host> hosts) {
|
||||
HostsEvent(String eventName, List<Host> hosts) {
|
||||
super(eventName, null, null, hosts, Host::getHostId);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user