1
0
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:
sidheshenator
2015-03-20 13:47:11 -04:00
parent 4778cdc1cc
commit da228eb65c
3 changed files with 6 additions and 6 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"