get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / SliceCreate.py
index 11a700c..e752505 100644 (file)
@@ -1,7 +1,7 @@
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth
 from PLC.Slices import Slice, Slices
 from PLC.Methods.AddSlice import AddSlice
 
@@ -11,13 +11,15 @@ class SliceCreate(AddSlice):
     """
 
     status = "deprecated"
-    
+
     accepts = [
-        PasswordAuth(),
+        Auth(),
         Slice.fields['name'],
         AddSlice.accepts[1]
         ]
 
+    returns = Parameter(int, 'New slice_id (> 0) if successful')
+
     def call(self, auth, name, slice_fields = {}):
         slice_fields['name'] = name
         return AddSlice.call(self, auth, slice_fields)