Autopsy  4.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
SampleModuleIngestJobSettings.java
Go to the documentation of this file.
1 /*
2  * Sample module ingest job settings in the public domain.
3  * Feel free to use this as a template for your module job settings.
4  *
5  * Contact: Brian Carrier [carrier <at> sleuthkit [dot] org]
6  *
7  * This is free and unencumbered software released into the public domain.
8  *
9  * Anyone is free to copy, modify, publish, use, compile, sell, or
10  * distribute this software, either in source code form or as a compiled
11  * binary, for any purpose, commercial or non-commercial, and by any
12  * means.
13  *
14  * In jurisdictions that recognize copyright laws, the author or authors
15  * of this software dedicate any and all copyright interest in the
16  * software to the public domain. We make this dedication for the benefit
17  * of the public at large and to the detriment of our heirs and
18  * successors. We intend this dedication to be an overt act of
19  * relinquishment in perpetuity of all present and future rights to this
20  * software under copyright law.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28  * OTHER DEALINGS IN THE SOFTWARE.
29  */
30 package org.sleuthkit.autopsy.examples;
31 
33 
38 
39  private static final long serialVersionUID = 1L;
40  private boolean skipKnownFiles = true;
41 
43  }
44 
45  SampleModuleIngestJobSettings(boolean skipKnownFiles) {
46  this.skipKnownFiles = skipKnownFiles;
47  }
48 
49  @Override
50  public long getVersionNumber() {
51  return serialVersionUID;
52  }
53 
54  void setSkipKnownFiles(boolean enabled) {
55  skipKnownFiles = enabled;
56  }
57 
58  boolean skipKnownFiles() {
59  return skipKnownFiles;
60  }
61 }

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