summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Structure.py
blob: 2462de8dd693b4519b860b09148b68858afe7f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

__revision__ = '$Revision$'

class Structure(object):
    '''The Structure class is used to define patterns of data in host configurations
    Structure subtyped classes provide functions that group configurations into dependent
    and independent clauses'''
    __name__ = 'example'

    def __init__(self, core, datastore):
        self.data = "%s/%s"%(datastore,self.__name__)
        self.core = core
        self.__setup__()

    def __setup__(self):
        pass

    def Construct(self, metadata, subset):
        '''Returns a list of configuration structure chunks for client'''
        return []