Package com.denimgroup.threadfix.data.entities

Examples of com.denimgroup.threadfix.data.entities.ScannerType


            return null;
        }

        RemoteProvider remoteProvider = null;

        ScannerType type = ScannerType.getScannerType(providerType);

        if (type == ScannerType.QUALYSGUARD_WAS) {
            remoteProvider = new QualysRemoteProvider();
        } else if (type == ScannerType.SENTINEL) {
            remoteProvider = new WhiteHatRemoteProvider();
View Full Code Here


    public ScanCheckResultBean testScan(@Nonnull File file) throws TypeParsingException, ScanTestingException {
        if (!file.exists()) {
            throw new ScanFileNotFoundException("Scan file not found: " + file.getAbsolutePath());
        }

        ScannerType scannerType = bridge.getType(file);

        if (scannerType == null) {
            throw new TypeParsingException();
        } else {
            return bridge.testScan(scannerType, file);
View Full Code Here

        if (!file.exists()) {
            throw new ScanFileNotFoundException("Scan file not found: " + file.getAbsolutePath());
        }

        ScannerType scannerType = bridge.getType(file);

        if (scannerType == null) {
            throw new TypeParsingException();
        } else {
            ScanCheckResultBean resultBean = bridge.testScan(scannerType, file);
View Full Code Here

TOP

Related Classes of com.denimgroup.threadfix.data.entities.ScannerType

Copyright © 2018 www.massapicom. 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.