Interface CheckAccessParameters

All Superinterfaces:
org.gradle.workers.WorkParameters

public interface CheckAccessParameters extends org.gradle.workers.WorkParameters
Parameters passed to the CheckAccess work action via Gradle's worker API.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.gradle.workers.WorkParameters

    org.gradle.workers.WorkParameters.None
  • Method Summary

    Modifier and Type
    Method
    Description
    org.gradle.api.file.ConfigurableFileCollection
     
    org.gradle.api.file.DirectoryProperty
     
    org.gradle.api.provider.Property<Boolean>
     
    org.gradle.api.file.RegularFileProperty
     
    org.gradle.api.provider.MapProperty<String,Object>
     
  • Method Details

    • getPropertiesForAccessModifier

      org.gradle.api.provider.MapProperty<String,Object> getPropertiesForAccessModifier()
      Returns:
      extra properties forwarded to kohsuke.accmod.Checker
    • getClasspathToScan

      org.gradle.api.file.ConfigurableFileCollection getClasspathToScan()
      Returns:
      full classpath (compiled classes + compile deps) for type resolution during scanning
    • getDirToCheck

      org.gradle.api.file.DirectoryProperty getDirToCheck()
      Returns:
      the specific compiled-classes directory being inspected for violations
    • getIgnoreFailures

      org.gradle.api.provider.Property<Boolean> getIgnoreFailures()
      Returns:
      true to treat violations as warnings rather than build errors
    • getOutputFile

      org.gradle.api.file.RegularFileProperty getOutputFile()
      Returns:
      file where this work item writes its violation report