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