Autopsy  3.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
TimeLineEvent.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2014 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.events;
20 
23 
27 public class TimeLineEvent {
28 
29  private final Long eventID;
30 
31  private final Long fileID, time;
32 
33  private final Long artifactID;
34 
35  private final EventType subType;
36 
37  private final String fullDescription, medDescription, shortDescription;
38 
39  private final TskData.FileKnown known;
40 
41  public Long getArtifactID() {
42  return artifactID;
43  }
44 
45  public Long getEventID() {
46  return eventID;
47  }
48 
49  public Long getFileID() {
50  return fileID;
51  }
52 
54  public Long getTime() {
55  return time;
56  }
57 
58  public EventType getType() {
59  return subType;
60  }
61 
62  public String getFullDescription() {
63  return fullDescription;
64  }
65 
66  public String getMedDescription() {
67  return medDescription;
68  }
69 
70  public String getShortDescription() {
71  return shortDescription;
72  }
73 
74  public TimeLineEvent(Long eventID, Long objID, Long artifactID, Long time,
75  EventType type, String fullDescription, String medDescription, String shortDescription, TskData.FileKnown known) {
76  this.eventID = eventID;
77  this.fileID = objID;
78  this.artifactID = artifactID;
79  this.time = time;
80  this.subType = type;
81 
82  this.fullDescription = fullDescription;
83  this.medDescription = medDescription;
84  this.shortDescription = shortDescription;
85  this.known = known;
86  }
87 
89  return known;
90  }
91 }
TimeLineEvent(Long eventID, Long objID, Long artifactID, Long time, EventType type, String fullDescription, String medDescription, String shortDescription, TskData.FileKnown known)

Copyright © 2012-2015 Basis Technology. Generated on: Mon Oct 19 2015
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.