Package com.abiquo.server.core.infrastructure

Examples of com.abiquo.server.core.infrastructure.LogicServersDto


    *      "http://community.abiquo.com/display/ABI20/RackResource#RackResource-RetrievealistofallservicesprofilesinaUCSrack"
    *      > http://community.abiquo.com/display/ABI20/RackResource#RackResource
    *      - RetrievealistofallservicesprofilesinaUCSrack</a>
    */
   public List<LogicServer> listServiceProfiles() {
      LogicServersDto profiles = context.getApi().getInfrastructureApi().listServiceProfiles(target);
      return wrap(context, LogicServer.class, profiles.getCollection());
   }
View Full Code Here


    *      "http://community.abiquo.com/display/ABI20/RackResource-RetrievealistofallServicesProfilesTemplatesinaUCSRack"
    *      > http://community.abiquo.com/display/ABI20/RackResource-
    *      RetrievealistofallServicesProfilesTemplatesinaUCSRack</a>
    */
   public List<LogicServer> listServiceProfileTemplates() {
      LogicServersDto templates = context.getApi().getInfrastructureApi().listServiceProfileTemplates(target);
      return wrap(context, LogicServer.class, templates.getCollection());
   }
View Full Code Here

TOP

Related Classes of com.abiquo.server.core.infrastructure.LogicServersDto

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.