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

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

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

    Modifier and Type
    Method
    Description
    Gets the name from the current service 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

    • ServiceCriterion

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

    • getName

      public String getName()
      Gets the name from the current service criterion, or null if not present.
      Returns:
      The service name 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.