diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-10-28 13:03:54 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-10-28 13:03:54 -0300 |
commit | 856a3301b025f3d14c36a0ec0c90563358780670 (patch) | |
tree | 8193836786a205b19359e696cb357af3d2ac3c29 /src/leap/bitmask/services/connections.py | |
parent | e149f7e3e6a5c4621edd252fd7f75c580c5e49b3 (diff) | |
parent | 4c3329d67ec6730da0b26cc3b57a1ee689560cd0 (diff) |
Merge remote-tracking branch 'kali/feature/refactor-mail-connections' into develop
Diffstat (limited to 'src/leap/bitmask/services/connections.py')
-rw-r--r-- | src/leap/bitmask/services/connections.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/leap/bitmask/services/connections.py b/src/leap/bitmask/services/connections.py index 8aeb4e0c..ecfd35ff 100644 --- a/src/leap/bitmask/services/connections.py +++ b/src/leap/bitmask/services/connections.py @@ -41,9 +41,6 @@ The different services should declare a ServiceConnection class that inherits from AbstractLEAPConnection, so an instance of such class can be used to inform the StateMachineBuilder of the particularities of the state transitions for each particular connection. - -In the future, we will extend this class to allow composites in connections, -so we can apply conditional logic to the transitions. """ @@ -79,12 +76,7 @@ class AbstractLEAPConnection(object): """ return self._qtsigs - # XXX for conditional transitions with composites, - # we might want to add - # a field with dependencies: what this connection - # needs for (ON) state. - # XXX Look also at child states in the state machine. - #depends = () + components = None # Signals that derived classes # have to implement. |