Autopsy  4.5.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
CaseDetails.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2017 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.casemodule;
20 
25 public final class CaseDetails {
26 
27  private final String caseDisplayName;
28  private final String caseNumber;
29  private final String examinerName;
30  private final String examinerPhone;
31  private final String examinerEmail;
32  private final String caseNotes;
33 
40  public CaseDetails(String displayName) {
41  caseDisplayName = displayName;
42  caseNumber = "";
43  examinerName = "";
44  examinerPhone = "";
45  examinerEmail = "";
46  caseNotes = "";
47  }
48 
59  public CaseDetails(String displayName, String number, String exName, String exPhone, String exEmail, String notes) {
60  caseDisplayName = displayName;
61  caseNumber = number;
62  examinerName = exName;
63  examinerPhone = exPhone;
64  examinerEmail = exEmail;
65  caseNotes = notes;
66  }
67 
73  public String getCaseDisplayName() {
74  return caseDisplayName;
75  }
76 
82  public String getCaseNumber() {
83  return caseNumber;
84  }
85 
91  public String getExaminerName() {
92  return examinerName;
93  }
94 
100  public String getExaminerPhone() {
101  return examinerPhone;
102  }
103 
109  public String getExaminerEmail() {
110  return examinerEmail;
111  }
112 
118  public String getCaseNotes() {
119  return caseNotes;
120  }
121 }
CaseDetails(String displayName, String number, String exName, String exPhone, String exEmail, String notes)

Copyright © 2012-2016 Basis Technology. Generated on: Tue Feb 20 2018
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.