Home | History | Annotate | Download | only in ap_configurators
      1 # Copyright 2016 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that
      3 # can be found in the LICENSE file.
      4 
      5 """Class to provide Static AP configurations for APs managed by RF Switch."""
      6 
      7 import static_ap_configurator
      8 
      9 class RFSwitchStaticAPConfigurator(
     10         static_ap_configurator.StaticAPConfigurator):
     11     """Derived class to provide AP configuration details."""
     12 
     13     def power_up_router(self):
     14         """APs are always ON, bypassing the power up command."""
     15         pass
     16 
     17     def power_down_router(self):
     18         """APs are always ON, bypassing the power down command."""
     19         pass
     20