package com.linkedin.thirdeye.datalayer.entity; public class AnomalyFunctionIndex extends AbstractIndexEntity { String functionName; boolean active; long metricId; String collection; String metric; public boolean isActive() { return active; } public void setActive(boolean active) { this.active = active; } public String getCollection() { return collection; } public void setCollection(String collection) { this.collection = collection; } public String getMetric() { return metric; } public void setMetric(String metric) { this.metric = metric; } public long getMetricId() { return metricId; } public void setMetricId(long metricId) { this.metricId = metricId; } public String getFunctionName() { return functionName; } public void setFunctionName(String functionName) { this.functionName = functionName; } }