X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=sfa%2Fmethods%2FStop.py;h=48974ab29d6af0449ad685099f92e78e8d07ff0e;hb=2b3c0c7ebe7c55afb14e3ea3aed10f8b1abe01e7;hp=13106e75277201f22e4449cc87e83c27f6327ea4;hpb=3109c266ca3a5df2364e52502479adcc2f995d68;p=sfa.git diff --git a/sfa/methods/Stop.py b/sfa/methods/Stop.py index 13106e75..48974ab2 100644 --- a/sfa/methods/Stop.py +++ b/sfa/methods/Stop.py @@ -1,11 +1,6 @@ -### $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 urn_to_hrn +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 class Stop(Method): @@ -35,7 +30,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