Package com.abiquo.server.core.appslibrary

Examples of com.abiquo.server.core.appslibrary.ConversionsDto


    *      > http://community.abiquo.com/display/ABI20/Conversion+Resource#
    *      ConversionResource- ListConversions</a>
    * @return all the conversions of the virtual machine template
    */
   public Iterable<Conversion> listConversions() {
      ConversionsDto convs = context.getApi().getVirtualMachineTemplateApi().listConversions(target);
      return wrap(context, Conversion.class, convs.getCollection());
   }
View Full Code Here


    *           , Optionally filter conversions with the desired state
    * @return all the conversions of the virtual machine template applying the
    *         constrains
    */
   public Iterable<Conversion> listConversions(final HypervisorType hypervisor, final ConversionState state) {
      ConversionsDto convs = context
            .getApi()
            .getVirtualMachineTemplateApi()
            .listConversions(target,
                  ConversionOptions.builder().hypervisorType(hypervisor).conversionState(state).build());
      return wrap(context, Conversion.class, convs.getCollection());
   }
View Full Code Here

    *      > http://community.abiquo.com/display/ABI20/Conversion+Resource#
    *      ConversionResource- ListConversions</a>
    * @return all the conversions of the virtual machine template
    */
   public Iterable<Conversion> listConversions() {
      ConversionsDto convs = context.getApi().getVirtualMachineTemplateApi().listConversions(target);
      return wrap(context, Conversion.class, convs.getCollection());
   }
View Full Code Here

    *           , Optionally filter conversions with the desired state
    * @return all the conversions of the virtual machine template applying the
    *         constrains
    */
   public Iterable<Conversion> listConversions(final HypervisorType hypervisor, final ConversionState state) {
      ConversionsDto convs = context
            .getApi()
            .getVirtualMachineTemplateApi()
            .listConversions(target,
                  ConversionOptions.builder().hypervisorType(hypervisor).conversionState(state).build());
      return wrap(context, Conversion.class, convs.getCollection());
   }
View Full Code Here

    *      > http://community.abiquo.com/display/ABI20/Conversion+Resource#
    *      ConversionResource- ListConversions</a>
    * @return all the conversions of the virtual machine template
    */
   public List<Conversion> listConversions() {
      ConversionsDto convs = context.getApi().getVirtualMachineTemplateApi().listConversions(target);
      return wrap(context, Conversion.class, convs.getCollection());
   }
View Full Code Here

    *           , Optionally filter conversions with the desired state
    * @return all the conversions of the virtual machine template applying the
    *         constrains
    */
   public List<Conversion> listConversions(final HypervisorType hypervisor, final ConversionState state) {
      ConversionsDto convs = context
            .getApi()
            .getVirtualMachineTemplateApi()
            .listConversions(target,
                  ConversionOptions.builder().hypervisorType(hypervisor).conversionState(state).build());
      return wrap(context, Conversion.class, convs.getCollection());
   }
View Full Code Here

TOP

Related Classes of com.abiquo.server.core.appslibrary.ConversionsDto

Copyright © 2018 www.massapicom. 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.