Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
CaseDataSourcesWrapper.java
Go to the documentation of this file.
1/*
2 * Central Repository
3 *
4 * Copyright 2018 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 */
19package org.sleuthkit.autopsy.centralrepository.optionspanel;
20
21import java.util.Collections;
22import java.util.List;
23import org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationCase;
24import org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationDataSource;
25import org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepoOrganization;
26
31class CaseDataSourcesWrapper {
32
33 private final CorrelationCase eamCase;
34 private final List<CorrelationDataSource> dataSources;
35
43 CaseDataSourcesWrapper(CorrelationCase correlationCase, List<CorrelationDataSource> dataSourceList) {
44 eamCase = correlationCase;
45 dataSources = dataSourceList;
46 }
47
53 String getDisplayName() {
54 return eamCase.getDisplayName();
55 }
56
64 List<CorrelationDataSource> getDataSources() {
65 return Collections.unmodifiableList(dataSources);
66 }
67
73 String getCreationDate() {
74 return eamCase.getCreationDate();
75 }
76
82 String getOrganizationName() {
83 CentralRepoOrganization org = eamCase.getOrg();
84 return org == null ? "" : org.getName();
85 }
86
92 String getCaseNumber() {
93 return eamCase.getCaseNumber();
94 }
95
101 String getExaminerName() {
102 return eamCase.getExaminerName();
103 }
104
110 String getExaminerEmail() {
111 return eamCase.getExaminerEmail();
112 }
113
119 String getNotes() {
120 return eamCase.getNotes();
121 }
122
128 String getExaminerPhone() {
129 return eamCase.getExaminerPhone();
130 }
131}

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.