Package com.subgraph.vega.api.scanner

Examples of com.subgraph.vega.api.scanner.IScanner


import com.subgraph.vega.ui.scanner.wizards.NewWizardDialog;

public class ScanExecutor {
 
  public String runScan(Shell shell, String target) {
    final IScanner scanner = Activator.getDefault().getScanner();
    final IScan scan = scanner.createScan();
    final Collection<IIdentity> identities = Activator.getDefault().getModel().getCurrentWorkspace().getIdentityModel().getAllIdentities();

    NewScanWizard wizard = new NewScanWizard(target, identities, scan.getModuleList(), scan.getConfig().getDefaultExcludedParameterNames());
    WizardDialog dialog = new NewWizardDialog(shell, wizard);
    if(dialog.open() == IDialogConstants.OK_ID) {
View Full Code Here

TOP

Related Classes of com.subgraph.vega.api.scanner.IScanner

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.