Package com.cloud.agent.api

Examples of com.cloud.agent.api.StartupPxeServerCommand


    return Type.BaremetalPxe;
  }

  @Override
  public StartupCommand[] initialize() {
    StartupPxeServerCommand cmd = new StartupPxeServerCommand();
    cmd.setName(_name);
    cmd.setDataCenter(_zoneId);
    cmd.setPod(_podId);
    cmd.setPrivateIpAddress(_ip);
    cmd.setStorageIpAddress("");
    cmd.setVersion("");
    cmd.setGuid(_guid);
    return new StartupCommand[]{cmd};
  }
View Full Code Here


        return Type.BaremetalPxe;
    }

    @Override
    public StartupCommand[] initialize() {
        StartupPxeServerCommand cmd = new StartupPxeServerCommand();
        cmd.setName(_name);
        cmd.setDataCenter(_zoneId);
        cmd.setPod(_podId);
        cmd.setPrivateIpAddress(_ip);
        cmd.setStorageIpAddress("");
        cmd.setVersion("");
        cmd.setGuid(_guid);
        return new StartupCommand[] {cmd};
    }
View Full Code Here

    return Type.PxeServer;
  }

  @Override
  public StartupCommand[] initialize() {
    StartupPxeServerCommand cmd = new StartupPxeServerCommand();
    cmd.setName(_name);
    cmd.setDataCenter(_zoneId);
    cmd.setPod(_podId);
    cmd.setPrivateIpAddress(_ip);
    cmd.setStorageIpAddress("");
    cmd.setVersion("");
    cmd.setGuid(_guid);
    return new StartupCommand[]{cmd};
  }
View Full Code Here

TOP

Related Classes of com.cloud.agent.api.StartupPxeServerCommand

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.