Go to the documentation of this file.
19package org.sleuthkit.autopsy.centralrepository.application;
21import java.util.Objects;
22import java.util.logging.Level;
23import org.sleuthkit.autopsy.casemodule.Case;
24import org.sleuthkit.autopsy.casemodule.NoCurrentCaseException;
25import org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepoException;
26import org.sleuthkit.autopsy.coreutils.Logger;
58 logger.log(Level.WARNING,
"Unable to get current case", ex);
66 public boolean equals(Object other) {
69 return (Objects.equals(otherKey.getDataSourceID(),
this.getDataSourceID())
70 && Objects.equals(otherKey.getFilePath(),
this.getFilePath())
71 && Objects.equals(otherKey.getType(),
this.getType())
72 && Objects.equals(otherKey.getCaseUUID(),
this.getCaseUUID()));
79 return Objects.hash(getDataSourceID(), getFilePath(), getType(), getCaseUUID());
96 String getFilePath() {
105 String getDataSourceID() {
114 String getCaseUUID() {
static Case getCurrentCaseThrows()
CorrelationAttributeInstance getCorrelationAttributeInstance()
static String getPlaceholderUUID()
static final Logger logger
boolean equals(Object other)
final String dataSourceID
UniquePathKey(NodeData nodeData)
CorrelationCase getCorrelationCase()
synchronized static Logger getLogger(String name)
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.