Examples of QualysPlatform


Examples of com.denimgroup.threadfix.data.enums.QualysPlatform

    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();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.