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