Search in sources :

Example 1 with RemoteAccessVpn

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

the class RemoteAccessVpnConfigItem method generateConfig.

@Override
public List<ConfigItem> generateConfig(final NetworkElementCommand cmd) {
    final RemoteAccessVpnCfgCommand command = (RemoteAccessVpnCfgCommand) cmd;
    final RemoteAccessVpn remoteAccessVpn = new RemoteAccessVpn(command.isCreate(), command.getIpRange(), command.getPresharedKey(), command.getVpnServerIp(), command.getLocalIp(), command.getLocalCidr(), command.getPublicInterface());
    return generateConfigItems(remoteAccessVpn);
}
Also used : RemoteAccessVpnCfgCommand(com.cloud.agent.api.routing.RemoteAccessVpnCfgCommand) RemoteAccessVpn(com.cloud.agent.resource.virtualnetwork.model.RemoteAccessVpn)

Aggregations

RemoteAccessVpnCfgCommand (com.cloud.agent.api.routing.RemoteAccessVpnCfgCommand)1 RemoteAccessVpn (com.cloud.agent.resource.virtualnetwork.model.RemoteAccessVpn)1