Package com.subgraph.vega.internal.model

Examples of com.subgraph.vega.internal.model.ModelProperties


  ScanAlert(String key, String name, String title, Severity severity, IScanInstance scanInstance, long requestId) {
    this.key = key;
    this.name = name;
    this.title = title;
    this.severity = severity;
    this.properties = new ModelProperties();
    this.scanInstance = scanInstance;
    this.requestId = requestId;
    this.alertHighlights = new ActivatableArrayList<IScanAlertHighlight>();
  }
View Full Code Here


  private transient Activator activator;

  public ScanInstance(long scanId) {
    this.scanId = scanId;
    this.scanStatus = SCAN_CONFIG;
    this.properties = new ModelProperties();
  }
View Full Code Here

TOP

Related Classes of com.subgraph.vega.internal.model.ModelProperties

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.