Skip to content
Snippets Groups Projects
Commit fbbebdae authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Deleted completed TODOs

parent 977bf08e
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,7 @@ class CapabilityRequestIF(ABC):
# From class diagram
# FIXME: Will versions be str or a class of their own?
versions: List[str]
# TODO: Implement Ticket
tickets: List["Ticket"]
tickets: List["TicketIF"]
queue: "CapabilityQueueIF"
@property
......@@ -73,7 +72,6 @@ class CapabilityInfoIF(ABC):
"""
Interface to stored capability information.
"""
# TODO: Implement these two types
matrix: "CapabilityMatrixIF"
proj_settings: "ProjectSettingsIF"
......@@ -136,13 +134,10 @@ class CapabilityServiceIF(ABC):
"""
The capability service: clients access this to request capability runs
"""
# TODO: Implement EventTranslator and CapabilityFactory
event_translator: "EventTranslatorIF"
queue: CapabilityQueueIF
info: CapabilityInfoIF
factory: "CapabilityFactory"
# TODO: Implement two services
workflow: "WorkflowServiceIF"
estimation_service: "EstimationServiceIF"
metrics_service: "MetricsServiceIF"
......@@ -364,7 +359,6 @@ class WorkflowInfoIF(ABC):
"""
Holds information about workflows.
"""
# TODO: Implement WorkflowDefinition
definition: "WorkflowDefinitionIF"
request: "WorkflowRequestIF"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment