java.lang.Object
io.jenkins.plugins.analysis.core.restapi.ToolApi

@ExportedBean public class ToolApi extends Object
Remote API model for a static analysis tool that has been invoked in a build. Simple Java Bean that exposes several methods of a tool instance.
Autor:
Ullrich Hafner
  • Konstruktordetails

    • ToolApi

      public ToolApi(String id, String name, String latestUrl, int size, Map<edu.hm.hafner.analysis.Severity,Integer> sizePerSeverity)
      Creates a new instance of ToolApi.
      Parameter:
      id - unique ID of the tool
      name - human-readable name of the tool
      latestUrl - the URL to the latest results
      size - the number of warnings
      sizePerSeverity - the number of warnings, grouped by severity
  • Methodendetails

    • getId

      @Exported public String getId()
    • getName

      @Exported public String getName()
    • getSize

      @Exported public int getSize()
    • getLatestUrl

      @Exported public String getLatestUrl()
    • getErrorSize

      @Exported public int getErrorSize()
    • getHighSize

      @Exported public int getHighSize()
    • getNormalSize

      @Exported public int getNormalSize()
    • getLowSize

      @Exported public int getLowSize()