Package com.abiquo.server.core.infrastructure

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


    *      > http://community.abiquo.com/display/ABI20/DatacenterResource#
    *      DatacenterResource- Checkthestatefromremotemachine</a>
    */
   public MachineState checkMachineState(final String ip, final HypervisorType hypervisorType, final String user,
         final String password, final MachineOptions options) {
      MachineStateDto dto = context.getApi().getInfrastructureApi()
            .checkMachineState(target, ip, hypervisorType, user, password, options);

      return dto.getState();
   }
View Full Code Here


   public void update() {
      target = context.getApi().getInfrastructureApi().updateMachine(target);
   }

   public MachineState check() {
      MachineStateDto dto = context.getApi().getInfrastructureApi().checkMachineState(target, true);
      MachineState state = dto.getState();
      target.setState(state);
      return state;
   }
View Full Code Here

   public void update() {
      target = context.getApi().getInfrastructureApi().updateMachine(target);
   }

   public MachineState check() {
      MachineStateDto dto = context.getApi().getInfrastructureApi().checkMachineState(target, true);
      MachineState state = dto.getState();
      target.setState(state);
      return state;
   }
View Full Code Here

    *      > http://community.abiquo.com/display/ABI20/DatacenterResource#
    *      DatacenterResource- Checkthestatefromremotemachine</a>
    */
   public MachineState checkMachineState(final String ip, final HypervisorType hypervisorType, final String user,
         final String password, final MachineOptions options) {
      MachineStateDto dto = context.getApi().getInfrastructureApi()
            .checkMachineState(target, ip, hypervisorType, user, password, options);

      return dto.getState();
   }
View Full Code Here

      target = context.getApi().getInfrastructureApi().createMachine(rack.unwrap(), target);
   }

   @Override
   public MachineState check() {
      MachineStateDto dto = context.getApi().getInfrastructureApi().checkMachineState(target, true);
      MachineState state = dto.getState();
      target.setState(state);
      return state;
   }
View Full Code Here

   public void update() {
      target = context.getApi().getInfrastructureApi().updateMachine(target);
   }

   public MachineState check() {
      MachineStateDto dto = context.getApi().getInfrastructureApi().checkMachineState(target, true);
      MachineState state = dto.getState();
      target.setState(state);
      return state;
   }
View Full Code Here

    *      > http://community.abiquo.com/display/ABI20/DatacenterResource#
    *      DatacenterResource- Checkthestatefromremotemachine</a>
    */
   public MachineState checkMachineState(final String ip, final HypervisorType hypervisorType, final String user,
         final String password, final MachineOptions options) {
      MachineStateDto dto = context.getApi().getInfrastructureApi()
            .checkMachineState(target, ip, hypervisorType, user, password, options);

      return dto.getState();
   }
View Full Code Here

TOP

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

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.