207cec2370f5e06aa23d24f46cd2aa361eabf5fd
[plcapi.git] / PLC / Methods / AddNetworkType.py
1 # $Id$
2 from PLC.Faults import *
3 from PLC.Method import Method
4 from PLC.Parameter import Parameter, Mixed
5 from PLC.NetworkTypes import NetworkType, NetworkTypes
6 from PLC.Auth import Auth
7
8 class AddNetworkType(Method):
9     """
10     Adds a new network type.
11
12     Returns 1 if successful, faults otherwise.
13     """
14
15     roles = ['admin']
16
17     accepts = [
18         Auth(),
19         NetworkType.fields['type']
20         ]
21
22     returns = Parameter(int, '1 if successful')
23
24
25     def call(self, auth, name):
26         network_type = NetworkType(self.api)
27         network_type['type'] = name
28         network_type.sync(insert = True)
29
30         return 1