All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.providers.sarif.semgrep.SemgrepRule Maven / Gradle / Ivy

There is a newer version: 0.97.8
Show newest version
package io.codemodder.providers.sarif.semgrep;

import java.nio.file.Path;
import java.util.Objects;

/**
 * Represents a Semgrep rule with all the metadata it needs to be run and associated with a scan.
 */
record SemgrepRule(SemgrepScan semgrepScan, String ruleId, Path yaml) {

  SemgrepRule {
    Objects.requireNonNull(semgrepScan);
    Objects.requireNonNull(ruleId);
    Objects.requireNonNull(yaml);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy