> +   }
> +
> +   @Override
> +   public Iterable<Location> listLocations() {
> +      return ImmutableSet.of();
> +   }
> +
> +   @Override
> +   public Container getNode(String id) {
> +      return api.getRemoteApi().inspectContainer(id);
> +   }
> +
> +   @Override
> +   public void destroyNode(String id) {
> +      api.getRemoteApi().stopContainer(id);
> +      api.getRemoteApi().removeContainer(id);

removeContainer supports `force` that removes the container even if it was 
running. Default false.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r13232276

Reply via email to