Package com.abiquo.am.model

Examples of com.abiquo.am.model.TemplatesStateDto


    *      > http://community.abiquo.com/display/ABI20/
    *      TemplateDefinitionListResource# TemplateDefinitionListResource-
    *      Retrievealistofthestatusofalltemplatestatuslist</a>
    */
   public Iterable<TemplateState> listStatus(final Datacenter datacenter) {
      TemplatesStateDto states = context.getApi().getEnterpriseApi()
            .listTemplateListStatus(target, datacenter.unwrap());
      return wrap(context, TemplateState.class, states.getCollection());
   }
View Full Code Here


    *      > http://community.abiquo.com/display/ABI20/
    *      TemplateDefinitionListResource# TemplateDefinitionListResource-
    *      Retrievealistofthestatusofalltemplatestatuslist</a>
    */
   public Iterable<TemplateState> listStatus(final Datacenter datacenter) {
      TemplatesStateDto states = context.getApi().getEnterpriseApi()
            .listTemplateListStatus(target, datacenter.unwrap());
      return wrap(context, TemplateState.class, states.getCollection());
   }
View Full Code Here

    *      > http://community.abiquo.com/display/ABI20/
    *      TemplateDefinitionListResource# TemplateDefinitionListResource-
    *      Retrievealistofthestatusofalltemplatestatuslist</a>
    */
   public List<TemplateState> listStatus(final Datacenter datacenter) {
      TemplatesStateDto states = context.getApi().getEnterpriseApi()
            .listTemplateListStatus(target, datacenter.unwrap());
      return wrap(context, TemplateState.class, states.getCollection());
   }
View Full Code Here

TOP

Related Classes of com.abiquo.am.model.TemplatesStateDto

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.