From d45acc38c128cbd2502f333f93fb330a9b409c48 Mon Sep 17 00:00:00 2001 From: Ann Priestman Date: Fri, 17 Mar 2017 07:43:11 -0400 Subject: [PATCH] Added missing ImageWriterSettings --- .../imagewriter/ImageWriterSettings.java | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/imagewriter/ImageWriterSettings.java b/Core/src/org/sleuthkit/autopsy/imagewriter/ImageWriterSettings.java index ed56d0e174..a8d653d853 100644 --- a/Core/src/org/sleuthkit/autopsy/imagewriter/ImageWriterSettings.java +++ b/Core/src/org/sleuthkit/autopsy/imagewriter/ImageWriterSettings.java @@ -1,7 +1,7 @@ /* * Autopsy Forensic Browser * - * Copyright 2011-2017 Basis Technology Corp. + * Copyright 2011-2016 Basis Technology Corp. * Contact: carrier sleuthkit org * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -18,13 +18,24 @@ */ package org.sleuthkit.autopsy.imagewriter; +/** + * Helper class to hold the image writer settings from the local disk panel + */ public class ImageWriterSettings { + private final String path; + private final boolean updateDatabasePath; - public ImageWriterSettings(String x, boolean y) { + public ImageWriterSettings(String path, boolean updateDatabasePath){ + this.path = path; + this.updateDatabasePath = updateDatabasePath; } - - public String getPath() { - return ""; - } + public String getPath(){ + return path; + } + + public boolean getUpdateDatabasePath(){ + return updateDatabasePath; + } } +