20 package org.sleuthkit.autopsy.casemodule;
28 interface CaseConfigFileInterface {
29 public void open(String conFilePath)
throws Exception;
30 public void writeFile() throws Exception;
31 public
void close() throws Exception;
36 public String getCaseName() throws Exception;
37 public
void setCaseName(String caseName) throws Exception;
38 public String getCaseNumber() throws Exception;
39 public
void setCaseNumber(String caseNumber) throws Exception;
40 public String getCaseExaminer() throws Exception;
41 public
void setCaseExaminer(String examiner) throws Exception;