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