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);
}
Aggregations