Package Products :: Package ZenHub :: Package services :: Module NullConfig
[hide private]
[frames] | no frames]

Source Code for Module Products.ZenHub.services.NullConfig

 1  ############################################################################## 
 2  #  
 3  # Copyright (C) Zenoss, Inc. 2011, all rights reserved. 
 4  #  
 5  # This content is made available according to terms specified in 
 6  # License.zenoss under the directory where your Zenoss product is installed. 
 7  #  
 8  ############################################################################## 
 9   
10   
11  __doc__ = '''NullConfig 
12   
13  Provides a blank configuration to send no proxies to the remote 
14  collector. 
15  ''' 
16   
17  from Products.ZenCollector.services.config import NullConfigService 
18   
19 -class NullConfig(NullConfigService):
20 pass
21