Sleuth Kit Java Bindings (JNI)  4.3
Java bindings for using The Sleuth Kit
Report.java
Go to the documentation of this file.
1 /*
2  * Sleuth Kit Data Model
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.datamodel;
20 
24 public class Report {
25 
26  static long ID_NOT_SET = -1;
27  private long id = ID_NOT_SET;
28  private final String path;
29  private final long createdTime;
30  private final String sourceModuleName;
31  private final String reportName;
32 
41  Report(long id, String path, long createdTime, String sourceModuleName, String reportName) {
42  this.id = id;
43  this.path = path;
44  this.createdTime = createdTime;
45  this.sourceModuleName = sourceModuleName;
46  this.reportName = reportName;
47  }
48 
55  public long getId() {
56  return id;
57  }
58 
62  public String getPath() {
63  return path;
64  }
65 
71  public long getCreatedTime() {
72  return createdTime;
73  }
74 
81  public String getSourceModuleName() {
82  return this.sourceModuleName;
83  }
84 
90  public String getReportName() {
91  return reportName;
92  }
93 }
final String sourceModuleName
Definition: Report.java:30

Copyright © 2011-2015 Brian Carrier. (carrier -at- sleuthkit -dot- org)
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.