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

public class SqlCriterion extends AbstractCriterion
Represents a criterion for filtering based on a SQL query.
See Also:
  • Constructor Summary

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

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

    Methods inherited from class java.lang.Object

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

    • SqlCriterion

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

    • getQuery

      public String getQuery()
      Gets the query from the current SQL criterion, or null if not present.
      Returns:
      The query from the criterion, or null if not present.
    • produce

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