Autopsy  4.4.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
EamGlobalSet.java
Go to the documentation of this file.
1 /*
2  * Central Repository
3  *
4  * Copyright 2015-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.centralrepository.datamodel;
20 
21 import java.time.LocalDate;
22 
26 public class EamGlobalSet {
27 
28  private int globalSetID;
29  private int orgID;
30  private String setName;
31  private String version;
32  private LocalDate importDate;
33 
34  public EamGlobalSet(
35  int globalSetID,
36  int orgID,
37  String setName,
38  String version,
39  LocalDate importDate) {
40  this.globalSetID = globalSetID;
41  this.orgID = orgID;
42  this.setName = setName;
43  this.version = version;
44  this.importDate = importDate;
45  }
46 
47  public EamGlobalSet(
48  int orgID,
49  String setName,
50  String version,
51  LocalDate importDate) {
52  this(-1, orgID, setName, version, importDate);
53  }
54 
58  public int getGlobalSetID() {
59  return globalSetID;
60  }
61 
65  public void setGlobalSetID(int globalSetID) {
66  this.globalSetID = globalSetID;
67  }
68 
72  public int getOrgID() {
73  return orgID;
74  }
75 
79  public void setOrgID(int orgID) {
80  this.orgID = orgID;
81  }
82 
86  public String getSetName() {
87  return setName;
88  }
89 
93  public void setSetName(String setName) {
94  this.setName = setName;
95  }
96 
100  public String getVersion() {
101  return version;
102  }
103 
107  public void setVersion(String version) {
108  this.version = version;
109  }
110 
114  public LocalDate getImportDate() {
115  return importDate;
116  }
117 
121  public void setImportDate(LocalDate importDate) {
122  this.importDate = importDate;
123  }
124 }
EamGlobalSet(int globalSetID, int orgID, String setName, String version, LocalDate importDate)
EamGlobalSet(int orgID, String setName, String version, LocalDate importDate)

Copyright © 2012-2016 Basis Technology. Generated on: Fri Sep 29 2017
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.