Search in sources :

Example 1 with VmDhcpConfig

use of com.cloud.agent.resource.virtualnetwork.model.VmDhcpConfig in project cloudstack by apache.

the class DhcpEntryConfigItem method generateConfig.

@Override
public List<ConfigItem> generateConfig(final NetworkElementCommand cmd) {
    final DhcpEntryCommand command = (DhcpEntryCommand) cmd;
    final VmDhcpConfig vmDhcpConfig = new VmDhcpConfig(command.getVmName(), command.getVmMac(), command.getVmIpAddress(), command.getVmIp6Address(), command.getDuid(), command.getDefaultDns(), command.getDefaultRouter(), command.getStaticRoutes(), command.isDefault());
    return generateConfigItems(vmDhcpConfig);
}
Also used : VmDhcpConfig(com.cloud.agent.resource.virtualnetwork.model.VmDhcpConfig) DhcpEntryCommand(com.cloud.agent.api.routing.DhcpEntryCommand)

Aggregations

DhcpEntryCommand (com.cloud.agent.api.routing.DhcpEntryCommand)1 VmDhcpConfig (com.cloud.agent.resource.virtualnetwork.model.VmDhcpConfig)1