Package org.jclouds.abiquo.strategy.enterprise

Examples of org.jclouds.abiquo.strategy.enterprise.ListVirtualMachineTemplates.execute()


      return ImmutableList.copyOf(strategy.execute(this, filter));
   }

   public VirtualMachineTemplate findTemplate(final Predicate<VirtualMachineTemplate> filter) {
      ListVirtualMachineTemplates strategy = context.utils().injector().getInstance(ListVirtualMachineTemplates.class);
      return Iterables.getFirst(strategy.execute(this, filter), null);
   }

   public List<Datacenter> listAllowedDatacenters() {
      DatacentersDto datacenters = context.getApi().getEnterpriseApi().listAllowedDatacenters(target.getId());
      return wrap(context, Datacenter.class, datacenters.getCollection());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.