mirror of
https://github.com/elisspace/autopsy.git
synced 2026-08-31 16:33:52 +00:00
module names changed
This commit is contained in:
@@ -49,17 +49,17 @@ from org.sleuthkit.autopsy.coreutils import Logger
|
||||
from java.lang import IllegalArgumentException
|
||||
|
||||
# Sample factory that defines basic functionality and features of the module
|
||||
# It implements IngestModuleFactoryAdapter whoch is a no-op implementation of
|
||||
# It implements IngestModuleFactoryAdapter which is a no-op implementation of
|
||||
# IngestModuleFactory.
|
||||
class SampleJythonIngestModuleFactory(IngestModuleFactoryAdapter):
|
||||
def __init__(self):
|
||||
self.settings = None
|
||||
|
||||
def getModuleDisplayName(self):
|
||||
return "Sample Jython Ingest Module with GUI example code"
|
||||
return "Sample Jython(GUI) ingest module"
|
||||
|
||||
def getModuleDescription(self):
|
||||
return "A sample ingest module with user-configurable settings"
|
||||
return "Sample Jython Ingest Module with GUI example code"
|
||||
|
||||
def getModuleVersionNumber(self):
|
||||
return "1.0"
|
||||
|
||||
@@ -36,7 +36,7 @@ from org.sleuthkit.autopsy.report import GeneralReportModuleAdapter
|
||||
class SampleGeneralReportModule(GeneralReportModuleAdapter):
|
||||
|
||||
def getName(self):
|
||||
return "Sample Report Module"
|
||||
return "Sample Jython Report Module"
|
||||
|
||||
def getDescription(self):
|
||||
return "A sample Jython report module"
|
||||
|
||||
@@ -48,10 +48,10 @@ from org.sleuthkit.autopsy.casemodule.services import FileManager
|
||||
class SampleJythonIngestModuleFactory(IngestModuleFactoryAdapter):
|
||||
|
||||
def getModuleDisplayName(self):
|
||||
return "Sample Jython Ingest Module without GUI example code"
|
||||
return "Sample Jython ingest module"
|
||||
|
||||
def getModuleDescription(self):
|
||||
return "A sample Jython ingest module"
|
||||
return "Sample Jython Ingest Module without GUI example code"
|
||||
|
||||
def getModuleVersionNumber(self):
|
||||
return "1.0"
|
||||
|
||||
Reference in New Issue
Block a user