return scanIds;
}
private static String getBaseUrl(RemoteProviderType type) {
QualysPlatform qp;
String platform = type.getPlatform();
if (platform == null || platform.isEmpty()) {
qp = type.getIsEuropean() ? QualysPlatform.EU : QualysPlatform.US_1;
} else {
qp = QualysPlatform.getPlatform(platform);
}
return qp.getUrl();
}