コード例 #1
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.observable_controller = self.controller_factory(
         ObservableController)
     self.relation_controller = self.controller_factory(RelationController)
     self.report_controller = self.controller_factory(ReportController)
     self.indicator_controller = self.controller_factory(
         IndicatorController)
     self.process_controller = self.controller_factory(ProcessController)
     self.server_controller = self.controller_factory(SyncServerController)
コード例 #2
0
ファイル: objecthandler.py プロジェクト: tsmolka/ce1sus
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.observable_controller = self.controller_factory(
         ObservableController)
     self.attribute_controller = self.controller_factory(
         AttributeController)
     self.attribute_definition_controller = self.controller_factory(
         AttributeDefinitionController)
     self.object_definition_controller = self.controller_factory(
         ObjectDefinitionController)
     self.relations_controller = self.controller_factory(RelationController)
     self.conditions_controller = self.controller_factory(
         ConditionController)
コード例 #3
0
 def __init__(self, config):
   RestBaseHandler.__init__(self, config)
   self.observable_controller = self.controller_factory(ObservableController)
コード例 #4
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.events_controller = self.controller_factory(EventsController)
コード例 #5
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.indicator_controller = self.controller_factory(
         IndicatorController)
コード例 #6
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
コード例 #7
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.condition_controller = self.controller_factory(
         ConditionController)
コード例 #8
0
 def __init__(self, config):
   RestBaseHandler.__init__(self, config)
   self.process_controller = ProcessController(config)
コード例 #9
0
ファイル: admingrouphandler.py プロジェクト: tsmolka/ce1sus
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.group_controller = self.controller_factory(GroupController)
コード例 #10
0
ファイル: admintypehandler.py プロジェクト: tsmolka/ce1sus
 def __init__(self, config):
   RestBaseHandler.__init__(self, config)
   self.attribute_definition_controller = self.controller_factory(AttributeDefinitionController)
コード例 #11
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.login_controller = self.controller_factory(LoginController)
     self.user_controller = self.controller_factory(UserController)
コード例 #12
0
ファイル: reporthandler.py プロジェクト: tsmolka/ce1sus
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.report_controller = self.controller_factory(ReportController)
コード例 #13
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.sync_server_controller = self.controller_factory(
         SyncServerController)
コード例 #14
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.mail_controller = self.controller_factory(MailController)
コード例 #15
0
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.reference_controller = self.controller_factory(
         ReferencesController)
コード例 #16
0
ファイル: searchhandler.py プロジェクト: tsmolka/ce1sus
 def __init__(self, config):
   RestBaseHandler.__init__(self, config)
   self.search_controller = self.controller_factory(SearchController)
コード例 #17
0
ファイル: syncservershandler.py プロジェクト: tsmolka/ce1sus
 def __init__(self, config):
     RestBaseHandler.__init__(self, config)
     self.sync_server_controller = self.controller_factory(
         SyncServerController)
     self.misp_adapter = MISPAdapter(config)
     self.ce1sus_adapter = Ce1susAdapter(config)