the big cleanup: no more flash policy
[sfa.git] / sfa / generic / max.py
1 # an example of how to plugin the max aggregate manager with the flavour model
2 # might need to be tested
3 #
4 from sfa.generic.pl import pl
5
6
7 class max (pl):
8
9     # the max flavour behaves like pl, except for
10     # the aggregate
11     def aggregate_manager_class(self):
12         import sfa.managers.aggregate_manager_max
13         return sfa.managers.aggregate_manager_max.AggregateManagerMax
14
15 # I believe the component stuff is not implemented
16     def component_manager_class(self):
17         return None
18
19     def component_driver_class(self):
20         return None