org.molgenis.data.security.aggregation.AggregateAnonymizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-security Show documentation
Show all versions of molgenis-data-security Show documentation
Security data model and data layer security.
package org.molgenis.data.security.aggregation;
import org.molgenis.data.aggregation.AggregateQuery;
import org.molgenis.data.aggregation.AggregateResult;
/**
* Filter counts smaller the a threshold value
*
* @see AggregateQuery
*/
public interface AggregateAnonymizer {
AnonymizedAggregateResult anonymize(AggregateResult aggregateResult, int threshold);
}