Merge from trunk
[plcapi.git] / trunk / PLC / Methods / SliceRenew.py
diff --git a/trunk/PLC/Methods/SliceRenew.py b/trunk/PLC/Methods/SliceRenew.py
new file mode 100644 (file)
index 0000000..4ac6f89
--- /dev/null
@@ -0,0 +1,34 @@
+import time
+
+from PLC.Faults import *
+from PLC.Method import Method
+from PLC.Parameter import Parameter, Mixed
+from PLC.Slices import Slice, Slices
+from PLC.Auth import Auth
+from PLC.Methods.UpdateSlice import UpdateSlice 
+
+class SliceRenew(UpdateSlice):
+    """
+    Deprecated. See UpdateSlice.    
+
+    """
+
+    status = "deprecated"
+
+    roles = ['admin', 'pi', 'user']
+
+    accepts = [
+        Auth(),
+        Slice.fields['name'],
+       Slice.fields['expires']
+        ]
+
+    returns = Parameter(int, '1 if successful')
+
+    def call(self, auth, slice_name, slice_expires):
+
+       slice_fields = {}
+       slice_fields['expires'] = slice_expires
+       
+       return UpdateSlice.call(self, auth, slice_name, slice_fields)