ThreadedServer and SfaServer in separate files
[sfa.git] / sfa / rspecs / elements / interface.py
1 class Interface(dict):
2     fields = {'component_id': None,
3               'role': None,
4               'client_id': None,
5               'ipv4': None 
6     }    
7     def __init__(self, fields={}):
8         dict.__init__(self, Interface.fields)
9         self.update(fields)
10         
11