X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FStop.py;h=0d80282718db9877f29a07d88f1e00e3060e31c2;hb=cf630d87d633f3861e3ac8a50433fa29ca46a74e;hp=c871e05bdc4a6ccc1dda885c610bfd00869b9b81;hpb=c84915a8afc1d64a238686935577b0e84ed8a567;p=sfa.git diff --git a/sfa/methods/Stop.py b/sfa/methods/Stop.py index c871e05b..0d802827 100644 --- a/sfa/methods/Stop.py +++ b/sfa/methods/Stop.py @@ -1,13 +1,10 @@ -### $Id: stop_slice.py 17732 2010-04-19 21:10:45Z tmack $ -### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/stop_slice.py $ - -from sfa.util.faults import * -from sfa.util.namespace import * +from sfa.util.xrn import urn_to_hrn from sfa.util.method import Method -from sfa.util.parameter import Parameter, Mixed -from sfa.trust.auth import Auth + from sfa.trust.credential import Credential +from sfa.storage.parameter import Parameter, Mixed + class Stop(Method): """ Stop the specified slice @@ -35,7 +32,6 @@ class Stop(Method): origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) - manager = self.api.get_interface_manager() - manager.stop_slice(self.api, xrn, creds) + self.api.manager.stop_slice(self.api, xrn, creds) return 1