Package com.abiquo.server.core.infrastructure

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


    *      > http://community.abiquo.com/display/ABI20/RemoteServiceResource#
    *      RemoteServiceResource- RetrievealistofRemoteServices</a>
    * @return List of remote services in this datacenter.
    */
   public Iterable<RemoteService> listRemoteServices() {
      RemoteServicesDto remoteServices = context.getApi().getInfrastructureApi().listRemoteServices(target);
      return wrap(context, RemoteService.class, remoteServices.getCollection());
   }
View Full Code Here


    *      > http://community.abiquo.com/display/ABI20/RemoteServiceResource#
    *      RemoteServiceResource- RetrievealistofRemoteServices</a>
    * @return List of remote services in this datacenter.
    */
   public Iterable<RemoteService> listRemoteServices() {
      RemoteServicesDto remoteServices = context.getApi().getInfrastructureApi().listRemoteServices(target);
      return wrap(context, RemoteService.class, remoteServices.getCollection());
   }
View Full Code Here

    *      > http://community.abiquo.com/display/ABI20/RemoteServiceResource#
    *      RemoteServiceResource- RetrievealistofRemoteServices</a>
    * @return List of remote services in this datacenter.
    */
   public List<RemoteService> listRemoteServices() {
      RemoteServicesDto remoteServices = context.getApi().getInfrastructureApi().listRemoteServices(target);
      return wrap(context, RemoteService.class, remoteServices.getCollection());
   }
View Full Code Here

TOP

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

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.