unnecessary call
authorTony Mack <tmack@cs.princeton.edu>
Fri, 6 Oct 2006 19:54:36 +0000 (19:54 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Fri, 6 Oct 2006 19:54:36 +0000 (19:54 +0000)
PLC/Methods/GetNodeNetworkBandwidthLimits.py [deleted file]

diff --git a/PLC/Methods/GetNodeNetworkBandwidthLimits.py b/PLC/Methods/GetNodeNetworkBandwidthLimits.py
deleted file mode 100644 (file)
index d2766cf..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-from PLC.Faults import *
-from PLC.Method import Method
-from PLC.Parameter import Parameter, Mixed
-from PLC.NodeNetworks import NodeNetwork, NodeNetworks
-from PLC.Auth import PasswordAuth
-
-class GetNodeNetworkBandwidthLimits(Method):
-    """
-    Returns an array of all the valid bandwith limits for node networks.
-    """
-
-    roles = ['admin', 'pi', 'user', 'tech']
-
-    accepts = [
-        PasswordAuth()
-        ]
-
-    returns = [NodeNetwork.fields['bwlimit']]
-
-    def call(self, auth):
-        return NodeNetwork.bwlimits