java.lang.Object
org.metricshub.maven.plugin.connector.producer.model.criteria.AbstractCriterion
org.metricshub.maven.plugin.connector.producer.model.criteria.ProcessCriterion

public class ProcessCriterion extends AbstractCriterion
Represents a criterion for filtering based on a process presence.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    ProcessCriterion(com.fasterxml.jackson.databind.JsonNode criterion)
    Constructs ProcessCriterion with the specified JSON criterion.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the command line from the current process criterion, or null if not present.
    void
    produce(org.apache.maven.doxia.sink.Sink sink)
    Produces the criterion to the specified sink.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ProcessCriterion

      public ProcessCriterion(com.fasterxml.jackson.databind.JsonNode criterion)
      Constructs ProcessCriterion with the specified JSON criterion.
      Parameters:
      criterion - The JSON criterion for process check.
  • Method Details

    • getCommandLine

      public String getCommandLine()
      Gets the command line from the current process criterion, or null if not present.
      Returns:
      The command line from the criterion, or null if not present.
    • produce

      public void produce(org.apache.maven.doxia.sink.Sink sink)
      Produces the criterion to the specified sink.
      Specified by:
      produce in class AbstractCriterion
      Parameters:
      sink - The sink to produce the criterion to.