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