Source code for pacifica.policy.status.instrument_query

#!/usr/bin/python
# -*- coding: utf-8 -*-
"""CherryPy Status Policy object class."""
from pacifica.policy.status.instrument.by_project_id import InstrumentsByProject
from pacifica.policy.status.instrument.search import InstrumentKeywordSearch


# pylint: disable=too-few-public-methods
[docs]class InstrumentQuery(object): """CherryPy root object class.""" exposed = False
[docs] def __init__(self): """Create local objects for sub tree items.""" # self.search = ProjectSearch() self.by_project_id = InstrumentsByProject() self.search = InstrumentKeywordSearch()