Autopsy  4.12.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
ViewArtifactInTimelineAction.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011-2016 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  */
19 package org.sleuthkit.autopsy.timeline.actions;
20 
21 import java.awt.event.ActionEvent;
22 import java.util.logging.Level;
23 import javax.swing.AbstractAction;
24 import org.openide.util.NbBundle;
25 import org.openide.util.actions.SystemAction;
29 import org.sleuthkit.datamodel.BlackboardArtifact;
30 import org.sleuthkit.datamodel.BlackboardAttribute;
31 import org.sleuthkit.datamodel.TskCoreException;
32 
36 public final class ViewArtifactInTimelineAction extends AbstractAction {
37 
38  private static final Logger logger = Logger.getLogger(ViewFileInTimelineAction.class.getName());
39 
40  private final BlackboardArtifact artifact;
41 
42  @NbBundle.Messages({"ViewArtifactInTimelineAction.displayName=View Result in Timeline... "})
43  public ViewArtifactInTimelineAction(BlackboardArtifact artifact) {
44  super(Bundle.ViewArtifactInTimelineAction_displayName());
45  this.artifact = artifact;
46  }
47 
48  @Override
49  public void actionPerformed(ActionEvent e) {
50  try {
51  SystemAction.get(OpenTimelineAction.class).showArtifactInTimeline(artifact);
52  } catch (TskCoreException ex) {
53  MessageNotifyUtil.Message.error("Error opening Timeline");
54  logger.log(Level.SEVERE, "Error showing timeline.", ex);
55  }
56  }
57 
65  public static boolean hasSupportedTimeStamp(BlackboardArtifact artifact) throws TskCoreException {
66 
67  for (BlackboardAttribute attr : artifact.getAttributes()) {
68  if (attr.getValueType() == BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME) {
69  return true;
70  }
71  }
72  return false;
73  }
74 }
synchronized static Logger getLogger(String name)
Definition: Logger.java:124

Copyright © 2012-2018 Basis Technology. Generated on: Wed Sep 18 2019
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.