19 package org.sleuthkit.autopsy.casemodule;
27 interface CaseConfigFileInterface {
29 public void open(String conFilePath)
throws Exception;
31 public void writeFile() throws Exception;
33 public
void close() throws Exception;
38 public String getCaseName() throws Exception;
40 public
void setCaseName(String caseName) throws Exception;
42 public String getCaseNumber() throws Exception;
44 public
void setCaseNumber(String caseNumber) throws Exception;
46 public String getCaseExaminer() throws Exception;
48 public
void setCaseExaminer(String examiner) throws Exception;